I just D/L NPP and I would like to know what is the Function List button
for? When I click it (on the toolbar) it op0ens a window on the right but
there is nothing in it... how do I use this?
Also, is there any way to search in the help file for a topic such as this?
If you open a file with source code, the function list will automatically display all classes/functions in that file. It only works with some languages (the ones people have written parsers for, e.g C++).
One thing that I noticed is that in my VB Scripts, I now have to put parentheses after each of my Subroutine and Function declarations in order for them to show up in the new function list. This was not the case in the old Function List plugin.
For instance:
Sub DoSomething - This will not show up in the function list.
Sub DoSomething() - This will show up.
Took me a while to figure this out.
Hope this helps someone else.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I just D/L NPP and I would like to know what is the Function List button
for? When I click it (on the toolbar) it op0ens a window on the right but
there is nothing in it... how do I use this?
Also, is there any way to search in the help file for a topic such as this?
If you open a file with source code, the function list will automatically display all classes/functions in that file. It only works with some languages (the ones people have written parsers for, e.g C++).
Don't know about the help file.
http://notepad-plus-plus.org/features/function-list.html
One thing that I noticed is that in my VB Scripts, I now have to put parentheses after each of my Subroutine and Function declarations in order for them to show up in the new function list. This was not the case in the old Function List plugin.
For instance:
Sub DoSomething - This will not show up in the function list.
Sub DoSomething() - This will show up.
Took me a while to figure this out.
Hope this helps someone else.