Notepad++ code outline as Eclipse's outline

Function List plugin was great, but it has not been maintained for a long time and has been reported unstable for a while now. (As I'm writting, the actual version of Notepad++ is 6.1.7)

You should try SourceCookifier which can be found on it's sourceforge page or better, directly in the Notepad++ Plugin Manager.

By the way, in the View menu, you've got an option to collapse different levels of your code which can then be unfold manually.

Hope this helps, happy coding mate.


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>

In Notepad++ v7.5,
Choose View-> Function List enter image description here