markdown.vim: Do not fold everything when loading

This commit is contained in:
2025-02-03 16:57:12 +01:00
parent 164d6b480f
commit 2c55f45783

View File

@@ -11,3 +11,5 @@ function! MdSectionFold()
return depth ? ">" . depth : "="
endfunction
setlocal foldmethod=expr foldexpr=MdSectionFold()
" Unfold everything when opening
normal zR