as mentioned in my first post,
I am working on creating documentation for a large project.
This project was inherited, and I find myself endlessly scrubbing through code trying to find things. What makes it worse is that they are using classes that are included 3 pages deep and the include files can come from one of 8 locations, including the current document location, which makes for some very interesting searching around.
At any rate, something that would help me greatly for this and other future projects is if in the "tag" window, I could highlight all of the classes copy to clip board and paste them into excell (each class would be a new row in excel).
I use excel to build my sql statement to insert into my database.
Anyway, you could right click on variable, classes, or functions and where the contextual menu pops up with "collapse all" you would also have a "copy group".
This would also work if you right click on a single item, you would have the option of copying the item to the clip board.
Expanding on that, perhaps allowing the ability to multi select the functions, would be helpful.
I know that this wouldn't be easy, but I am requesting it anyway.
Another idea that would make my life probably more easy than it should be, would be to be able to simply extract the list as an xml file which would reas something like
[code]
<class>
<item>
clsmyfirstclass
</item>
<item>
clsmyclass2
</item>
</class>
<function>
<item>
fnmyFunction
</item>
<item>
fnNewFunction
</item>
</function>
[/code]
Just a thought,
Thanks again for such a wonderful program