Search found 8 matches

by polebridge
Mon Mar 18, 2013 4:05 am
Forum: General
Topic: Regression: Tool RE worked in versions 4, 5, FAILS in 6.2.2
Replies: 3
Views: 1014

In ver 5 i added my external tool as a "DOS command", so that in the tool spec window, the Command was shown as cmd.exe in gray (not changeable). I added my Paramters as "perl -S blah blah...." My regular expression is ^\([0-9]+\):\([0-9]+\): I can still do that, and i can invoke the tool, and it ...
by polebridge
Fri Mar 15, 2013 8:57 pm
Forum: General
Topic: Regression: Tool RE worked in versions 4, 5, FAILS in 6.2.2
Replies: 3
Views: 1014

I'll try that. Thanks. Meanwhile, i attempted to delete the tool. In the tool list it appeared as the whole command string: "perl blah blah blah". When i highlighted it and hit my Delete key i got a Windows pop-up that Textpad failed and had to close. I tried again, same result. I renamed it to ...
by polebridge
Fri Mar 15, 2013 5:28 am
Forum: General
Topic: Regression: Tool RE worked in versions 4, 5, FAILS in 6.2.2
Replies: 3
Views: 1014

Regression: Tool RE worked in versions 4, 5, FAILS in 6.2.2

I have a tool that outputs lines like: 0004:057: # Purpose: Tex....... 0023:034: blah blah...... ... where the first two tokens are line and col number. I specified it under configure/Tools with "Regular Expression to Match Output" like ^\([0-9]+\):\([0-9]+\): and File: is blank, Line: is 1 and ...
by polebridge
Fri Apr 08, 2011 3:32 pm
Forum: General
Topic: window split vertical
Replies: 7
Views: 1948

In v. 5.4.2 on Win7 HomePremium:

I can see the shortcut (C-Q,y) turn the tick-box (under Configure/SynchScrolling) on and off, but i still don't see independent vertical scrolling, as i do in horizontal scrolling (and as i see in the Zeus editor).
by polebridge
Fri Jun 04, 2010 6:32 pm
Forum: General
Topic: Textpad in command prompt
Replies: 13
Views: 8852

I don't like to type much, so i have a tp.bat file on my path. The file contains one line: start "TextPad" "C:\Program Files\TextPad 5\TextPad.exe" %* so i can type: tp <some files> On another machine i AutoRun a profile.bat which contains doskey macros (like unix aliases). One of those is doskey tp ...
by polebridge
Fri Jun 04, 2010 11:49 am
Forum: Enhancement Suggestions
Topic: multiline regex
Replies: 4
Views: 714

Hi ben and Mud,

"parenthesized" and "backreferences"

I ran into those issues this morning, came here to edit my post, but found you guys were all over it. Thanks!
by polebridge
Thu Jun 03, 2010 7:58 pm
Forum: Enhancement Suggestions
Topic: multiline regex
Replies: 4
Views: 714

Do you mean a regex that will match across a newline? try \n

abc
def
abc
ghi

so "abc\ndef" will match line 1-2, but not 3-4
and "abc\n.*\nab" will match line 1, 2, and part of 3

Or do i misunderstand your issue?
by polebridge
Thu Jun 03, 2010 12:30 pm
Forum: Enhancement Suggestions
Topic: Find All command
Replies: 2
Views: 541

Find all in current file

If you have perl installed then this following script will work. It will find all instances of the selected text in the current file. # # TP-Find-All-In-Current-File.pl # # Purpose: TextPad tool to FindAll in current file for the current selected text # This is like the built-in TextPad Find-In ...