Consider these 2 functions:
- Code: Select all
def foo(arg1,
arg2,
arg3):
call1()
call2()
def foobar(arg1, arg2, arg3):
call1()
call2()
when folded they end up like this:
- Code: Select all
def foo(arg1, [...]
call1()
call2()
def foobar(arg1, arg2, arg3): [...]
As you can see having arguments on multiple lines is breaking the code folding.
Anyone know if this can be fixed by modifying a file somewhere?
Thanks