民德电子采销数据不匹配,库存商品金额变化诡异
1 question
0
votes
1
answer
26
views
How to set the foldlevel differently for function and class when loading a Python file?
To have an overview of a Python script I like to have:
The global functions folded (foldlevel 0)
The classes unfolded and all their methods folded (foldlevel 1)
def foo():
print("foo")
...