Help removing folder margin style lines.
-
Hello guys, can someone help me how to remove the lines which come when we fold a function?
image attached for clarification.
imagety for the help!
-
If you use python or lua script or nppexec do something like (SCI_SETFOLDFLAGS(int flags))
e.g. python scripteditor.setFoldFlags(0)
on startup of npp.
Cheers
Claudia -
thanks for the reply, unfortunately, I just started programming in c++, so, if you could elaborate on where to write the above method, I’d be grateful.
thanks,
saksham -
I’m not aware of any plugin which supports c++ script execution.
So you either have to write your own little plugin which executes
SCI_SETFOLDFLAGS(0) when it receives the NPP_READY notification
or you install one of the mentioned plugins and call the respective function.Cheers
Claudia