View of function headings
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
View of function headings
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.
RE: View of function headings
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
http://www.textpad.com/add-ons/index.html
I guess you can change the ShowMethods java prog a bit for any other language
Kini
RE: View of function headings
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.
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.