Is it possible to use comments to organise the code in paragraphs that could be available in the outline.
This would be helpful for organizing classes with a lot of methods.
I would be in particular interested in doing that inside python classes.
Example:
class Class():
# Special comment to be in the outline: First methods
def a(self):
pass
def b(self):
pass
def c(self):
pass
# Special comment to be in the outline: Other methods
def d(self):
pass
def e(self):
pass
Outline should group the function according to the special comment
Thanks !