Fix undo_ftplugin

Add the missing bar and setl command, which previously hadn't been
necessary until the addition of [[ and ]] maps.
This commit is contained in:
Jaehwang Jerry Jung
2022-01-11 01:56:42 +09:00
committed by Tim Pope
parent ed76403b2e
commit 23213f39db

View File

@@ -76,7 +76,7 @@ if has("folding") && get(g:, "markdown_folding", 0)
setlocal foldexpr=MarkdownFold()
setlocal foldmethod=expr
setlocal foldtext=MarkdownFoldText()
let b:undo_ftplugin .= " foldexpr< foldmethod< foldtext<"
let b:undo_ftplugin .= "|setl foldexpr< foldmethod< foldtext<"
endif
" vim:set sw=2: