Hacker News new | ask | show | jobs
by cferr 2049 days ago
Any plans to add a folding feature? Vim has a plugin which lets you hide the code under the definition unless you want to unfold it to see/edit it. e.g. folded:

  class ClassName(object):
    def some_method():
    def other_method():

  class Class2(ClassName):
    def more_methods():