vim:ftplugin:python: Set foldmethod locally

This commit is contained in:
2022-06-17 15:00:07 +02:00
parent 40ff2ac6c4
commit b63bbc391f

View File

@@ -7,6 +7,6 @@ setlocal smarttab
" PEP-8 wants 79 as maximum line length
setlocal textwidth=79
" Lines with equal indent form a fold
set foldmethod=indent
setlocal foldmethod=indent
" Open all folds after they were closed automatically by foldmethod=indent
normal zR