Search found 20 matches

by troels_kn
Thu Jun 14, 2007 8:39 pm
Forum: General
Topic: BackSpace..
Replies: 6
Views: 1616

ben_josephs wrote:No it wouldn't.
My bad. You're right.
by troels_kn
Thu Jun 14, 2007 7:06 pm
Forum: General
Topic: BackSpace..
Replies: 6
Views: 1616

MudGuard wrote:Better search for \n\.00 as . stands for any character, \. for a dot.
That would depend on, whether TP is configured to use POSIX style syntax or not.
by troels_kn
Thu Jun 14, 2007 6:15 pm
Forum: General
Topic: BackSpace..
Replies: 6
Views: 1616

Search for \n.00 and replace with .00
by troels_kn
Sun Jun 10, 2007 10:59 am
Forum: General
Topic: backtick - not available in Textpad 5
Replies: 5
Views: 1207

Your keyboard must be broken. I have no trouble typing it.
by troels_kn
Sun Jun 03, 2007 1:53 pm
Forum: Tips
Topic: ftp editing alternative? "M$ Services For Unix 3.5"
Replies: 4
Views: 16474

I actually used to use Internet Neighborhood from KnoWare, but after they closed down, I switched to Webdrive (On their recommendation). I haven't had any such issues with it - Maybe they changed between the time, where you uninstalled it, and I installed it?

One annoying thing though, is that the ...
by troels_kn
Sat Jun 02, 2007 3:28 pm
Forum: Tips
Topic: Token list for PHP
Replies: 2
Views: 15373

Token list for PHP

The following PHP script parses a PHP script, and displays a list of classes/interfaces and functions along with line number and a short excerpt of any docblock type comments.

Create a new tool, with the following settings:
Command: php (You may have to put the full path to php.exe)
Parameters: "C ...
by troels_kn
Sat Jun 02, 2007 3:18 pm
Forum: Tips
Topic: ftp editing alternative? "M$ Services For Unix 3.5"
Replies: 4
Views: 16474

While not free, I can recommend webdrive, which I have been using for years. It allows you to mount an FTP account as a drive at your system. Works with SFTP too.
by troels_kn
Thu May 31, 2007 9:44 pm
Forum: General
Topic: Tabs within a text file
Replies: 1
Views: 657

She can't. That's why most people uses spaces instead of tabs.
by troels_kn
Tue May 22, 2007 12:19 pm
Forum: General
Topic: Run PHP on Current File?
Replies: 7
Views: 1748

ashore wrote:More easily said than done: that checkbox is grayed out. Any thoughts here?
I'm not entirely sure, why those options are sometimes grayed out. What's the path to the exe (The 'Command' field)? Try changing it to simply 'php'
by troels_kn
Mon May 21, 2007 10:02 pm
Forum: General
Topic: Run PHP on Current File?
Replies: 7
Views: 1748

If you want to see the output of the script, you will need to check 'Capture Output' in the tools settings.
by troels_kn
Mon May 21, 2007 6:45 pm
Forum: General
Topic: Run PHP on Current File?
Replies: 7
Views: 1748

Configure > Preferences > Add > Program
Find php.exe
Press 'OK'
Press 'OK'
by troels_kn
Sun May 20, 2007 8:33 pm
Forum: Tips
Topic: Open containing folder
Replies: 4
Views: 16148

MudGuard wrote:Which advantages does your tool have compared to the existing
Tools -> Windows Explorer
?
Weird. Has that menu option always been there?
by troels_kn
Sun May 20, 2007 7:10 pm
Forum: Tips
Topic: Open containing folder
Replies: 4
Views: 16148

Open containing folder

You can map a key to open the folder of the current file this way:

Go to Preferences > Tools
Select Add > Program
Type in the following, and press 'OK':
C:\windows\explorer.exe
Click on the new tool, to rename it to something a bit more descriptive, such as 'open-containing-folder'.
Press 'Apply ...
by troels_kn
Sun May 20, 2007 6:58 pm
Forum: Tips
Topic: macro for commenting/uncommenting multiple lines
Replies: 0
Views: 14104

macro for commenting/uncommenting multiple lines

In C-like languages (Including PHP and Java), you often have to comment out a block of text, and you can't always use the block-type comments /* */ because they don't nest. For this purpose, I have a macro, which comments out the selection, and a counterpart, which does the opposite.

To implement ...
by troels_kn
Sun May 20, 2007 6:30 pm
Forum: Tips
Topic: macro for next/previous function
Replies: 0
Views: 14056

macro for next/previous function

I'm mainly using Textpad for writing PHP, and I have found the following macro quite useful. It simply jumps to the next function in the file (And its counterpart jumps to the previous function). It's a quick way to navigate in large files:

To implement it:

Start with a file, where there is a ...