For instance, if I have this function:
def foo():
a = 5
print a
...
If I fold it, I get this:
def foo():
+-- 123 lines: a = 5 ---------------------------------------------
but what I would really like would be something like this:
def foo():
+-- 124 lines: ---------------------------------------------
Using python-mode plugin, I have let g:pymode = 1
and let g:pymode_folding = 1
in my .vimrc
. Is this possible or not? Am I missing something? Thanks.