在 vim/neovim 中创建永久折叠
Creating a permanent fold in vim/neovim
我正在使用 nvim 编写我的 LaTeX 文档,并希望能够以这样的方式折叠我的 200 行序言,即如果我关闭并重新打开文件,序言仍将被折叠。有办法吗?
这些命令将启动包含所有折叠的 tex 文件:
augroup tex
autocmd!
autocmd FileType tex setlocal foldmethod=marker
" start out with everything folded away
autocmd FileType tex setlocal foldlevel=0
autocmd FileType tex setlocal foldlevelstart=0
augroup END
因此,如果您在序言周围使用标记(默认为 {{{
和 }}}
),这
会成功的。
我正在使用 nvim 编写我的 LaTeX 文档,并希望能够以这样的方式折叠我的 200 行序言,即如果我关闭并重新打开文件,序言仍将被折叠。有办法吗?
这些命令将启动包含所有折叠的 tex 文件:
augroup tex
autocmd!
autocmd FileType tex setlocal foldmethod=marker
" start out with everything folded away
autocmd FileType tex setlocal foldlevel=0
autocmd FileType tex setlocal foldlevelstart=0
augroup END
因此,如果您在序言周围使用标记(默认为 {{{
和 }}}
),这
会成功的。