Folding and unfolding blocks of code helps, but in bigger files I really want to have the outline overview of a class and its methods.

So, is there a plugin or anything for Notepad++ that I can have a outline of a class as the outline tab on Eclipse?

link|improve this question
feedback

1 Answer

It sounds like a job for the Function List plugin.

To install it, simply follow the instructions in install.txt inside of the .zip file.

It doesn't appear to work with Java out of the box, but you can follow this guide to make it work properly. Alternatively, you can manually add the following to the configuration XML file, inside of the Java section:

<Group name="METHOD" subgroup="" icon="0" child="0" autoexp="0" matchcase="1" fendtobbeg="" bbegtobend="\{" keywords="">
    <Rules regexbeg="\w*[\s\*]*" regexfunc="\w+\s*[\s\*]*" regexend="\(.*\)" bodybegin="\{" bodyend="\}" sep="" />
</Group>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.