View of function headings

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Steve Aldrich

View of function headings

Post by Steve Aldrich »

Does TextPad have the feature where I can view all the function headings in the file in a separate window? I want to see the function names in a separate window, then click the function name and go right to it in the edit window.
Rajesh Kini

RE: View of function headings

Post by Rajesh Kini »

Try ShowMethods Utility for Java source file in Utilities download for Textpad
http://www.textpad.com/add-ons/index.html

I guess you can change the ShowMethods java prog a bit for any other language

Kini
David Vanden Heuvel

RE: View of function headings

Post by David Vanden Heuvel »

Another way is to use CTAGS.
see http://www.textpad.com/support/tips.html

you can modify this a bit to do what you want by changing the parameters line to:
ctags -x -R $File| grep "method"

Initial folder: $Filedir

This method can be used to list classes, macros, functions, etc.
by replacing "method" with the corresponding keyword.

regards,
David.
Post Reply