Search found 26 matches

by Jens Hollmann
Fri Oct 29, 2010 7:23 am
Forum: General
Topic: TextPad vs. UltraEdit: arguments for TextPad
Replies: 11
Views: 2630

I use TextPad mostly as a source code editor for various languages. What I like in TextPad is that the search results and tool outputs (e.g. from the compiler) behave like documents. Which means I have full access with the keyboard (Ctrl-Tab or Shift/Ctrl-F11 etc.) to switch back and forth. Return ...
by Jens Hollmann
Fri May 28, 2010 7:16 am
Forum: General
Topic: Shift key stops working properly, < becomes ;
Replies: 6
Views: 570

I had the same problem (in the opposite direction). The standard "keystroke" is Alt-Shift. Yes just those without pressing any other key and then releasing them switches to another language layout. If you don't really need this (and it seems you don't), you can delete the unwanted language layout in ...
by Jens Hollmann
Thu May 03, 2007 7:43 am
Forum: Enhancement Suggestions
Topic: Tool output and search window as normal text windows
Replies: 26
Views: 7266

Suddenly the poll was activated for me. Maybe some confusion whether I was really logged in or not. Who cares.
by Jens Hollmann
Thu May 03, 2007 7:41 am
Forum: Enhancement Suggestions
Topic: Tool output and search window as normal text windows
Replies: 26
Views: 7266

Definitely Yes to that "enhancement" (That is having the 4.7 behavior as an addition back). I don't know about everyone else but my screen is always too small no matter what resolution I have. So I want the maximum number of lines for viewing my text and no docked output window reducing that area ...
by Jens Hollmann
Wed Feb 28, 2007 8:23 am
Forum: General
Topic: Extra Extensions in "Find In Files"
Replies: 3
Views: 319

Hm, as far as I know the drop down box "In Files" in the Find-In-Files dialog just lists the last things you have entered there. Similar to the drop down box above where you type in what to find. So during your searches in files with different extensions this list box gets filled with all the ...
by Jens Hollmann
Mon Jan 22, 2007 2:27 pm
Forum: General
Topic: PLEASE HELP with FindNext on Windows
Replies: 5
Views: 528

I discovered something similar a few weeks ago. Textpad was loosing some keystrokes (Alt-0 in this case) and it turned out it was Microsoft Word! When I run these 2 applications at the same time, some keystrokes don't work in TextPad anymore. A bug of Word in my opinion. Somehow it steals the ...
by Jens Hollmann
Mon Jan 22, 2007 2:19 pm
Forum: General
Topic: Delete
Replies: 1
Views: 470

I just created a new document class with your syn-file as syntax highlighting definition and it works just fine! So there must be something in your settings that differ from mine. The only thing that I know of that might influence syntax highlighting is a setting that defines additional characters ...
by Jens Hollmann
Fri Aug 26, 2005 6:54 am
Forum: General
Topic: Relative path names in textpad workspace
Replies: 1
Views: 347

The workspace does save its files with relative paths! But relative to the position of the workspace-file itself. So when you put the workspace file in the dir C:\XXX, it contains the files a.txt and b.txt and when you rename XXX to YYY everything should work just fine. At least it does for me. I ...
by Jens Hollmann
Fri Nov 12, 2004 7:45 am
Forum: General
Topic: 'Find All' in the current document?
Replies: 4
Views: 591

Well, that's why I have the "^\([[:digit:]]+\):" part. I put that in the field for "regular expression for jumping..." and selected "1" at the drop down box for "line". That works fine. Double-clicking (or Return) on a line in the output-window jumps to the appropriate line in the text document ...
by Jens Hollmann
Wed Nov 10, 2004 7:55 am
Forum: General
Topic: 'Find All' in the current document?
Replies: 4
Views: 591

I use fgrep for this purpose. 1) Get fgrep. For example from http://unxutils.sourceforge.net/ 2) Set up a command-shell-tool in TextPad with parameter: fgrep -n "$SelWord" $File I have set a regular expression for jumping to a row: ^\([[:digit:]]+\): Invoke the tool with something selected and you ...
by Jens Hollmann
Mon Nov 08, 2004 7:50 am
Forum: General
Topic: Problem with Replace
Replies: 4
Views: 515

You had "Regular expression" switched on. In this case using & in the replace-string means "insert the complete search-string".

Better leave that switched off unless you really want to use regular expressions (see TextPad help)

HTH
by Jens Hollmann
Tue May 04, 2004 6:53 am
Forum: General
Topic: Bug:"Another application has updated the file"
Replies: 5
Views: 599

I would rather guess that there is a process running that accesses the files you are talking about without you knowing about it. I never had trouble with this feature. Try filemon from sysinternals to see if anyone accesses the file in question. If TextPad is the only process accessing the file and ...
by Jens Hollmann
Wed Feb 18, 2004 11:48 am
Forum: General
Topic: Character Class not recognized in Regular expression
Replies: 3
Views: 492

Yes. For some unknown reason these character classes are only valid inside a group of characters which must be enclosed in square brackets.

The correct expression to look for a single upper case character therefore is:

[[:upper:]]

HTH

Jens
by Jens Hollmann
Tue Oct 14, 2003 7:20 am
Forum: General
Topic: How to update .TWS when moving files to new directory?
Replies: 1
Views: 261

You don't need to do anything if the TWS-file is at the correct location. The location of files in a workspace is saved in the tws file relative to its position. So if you store the tws-file in c:\download\project1 everything is as you want it. Copy the whole directory including the tws-files to c ...
by Jens Hollmann
Tue Jul 08, 2003 6:52 am
Forum: General
Topic: RegEx class operators not working! >:-O
Replies: 2
Views: 324

Maybe you look for "[:digit:]" instead of "[[:digit:]]"?

Yes the whole "[:digit:]" stands for a class of characters (including the brackets) like "0-9" or "a-z".

So searching for some digits would be "[[:digit:]]+".

HTH

Jens