I want to mark some particular functions to fold by default. Something like:
# PyFoldDefault
def my_func() # PyFoldDefault - will hide a function.
...
Similar behavior there in PyCharm, for warnings suppression. PyCharm has a global logic like "fold all comments", imports, etc", But I need more precise control during development.
P.S. This isn't duplicate.