Code Folding Query
Posted: Thu Jun 25, 2009 3:32 am
Is there a way to fold code to a specified level with one mouse click or keyboard function?
eg
fold all the def level code, but not the class level folding
from:
to:
Thanks in advance
Grant
eg
fold all the def level code, but not the class level folding
from:
Code: Select all
class xyz:
def abc(self):
code
code
def def(self):
code
code
Code: Select all
class xyz:
def abc(self): ...
def def(self): ...
Thanks in advance
Grant