18

Is it possible to get rid of the function folding margin on Notepad++? It seems like the sort of thing that should be in the prefs but I'm not seeing it anywhere.

4 Answers 4

18

In notepad++ v5.9.6.2 it's an option in the preferences. Under the "Editing" tab. They call it "Folder Margin Style". You can now select "none".

I think the more generic term for it is code folding.

0

I found someone else asking the same question on SourceForge

The solution is claimed to be:

If you go into langs.xml and comment out the Language tags for file extensions that you want, for me it's PHP, Perl and VBS, then restart Notepad++ and VOILA!!! No more annoying folder margins.

I hope it helps.

3
  • Hmm. All that seemed to do was disable most of the syntax highlighting. The folding margin is still stubbornly stuck to the side of the window.
    – izb
    Commented Aug 24, 2009 at 14:15
  • Well it's hard to find any reference of what your asking for :-( I wonder if Notepad++ calls folding margin something else...
    – Ivo Flipse
    Commented Aug 24, 2009 at 15:38
  • 2
    There are no options for hiding the folding margin. You can only change the style of the folding margin, unfortunately.
    – alex
    Commented Aug 25, 2009 at 10:38
0

You can add this macro to the Macros section of shortcuts.xml to make a shortcut Ctrl+Alt+H to hide the fold margin. I haven't yet found a way to make the macro auto-execute, so for now you just have to manually hide it for each buffer...

<Macro name="Hide Fold Margin" Ctrl="yes" Alt="yes" Shift="no" Key="83">
    <Action type="0" message="2242" wParam="2" lParam="0" sParam="" />
</Macro>

See also: http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Margins

0

Go to Settings ==> Preferences ==> Margins/Border/Edge

There you can see, "Folder Margin Style"==> Select "None"

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .