我已经安装了vim-latex-suite并且我想定制折叠以与labbook包一起使用。该labbook包使用\labday、\experiment和\subexperiment代替\chapter、\section和\subsection。
我想vim-latex-suite在 Vim 中自定义折叠选项,以便像传统的切片命令一样折叠\labday、\experiment和。\subexperiment
我已经尝试添加到我~/.vim/after/ftplugin/tex.vim的以下内容(但它没有用)
" Folding sections
let g:Tex_FoldedSections = ',labday,experiment,subexperiment'
" Folding commands
let g:Tex_FoldedCommands = ',labday,experiment,subexperiment'
有人可以告诉我如何自定义labbook包装的折叠方式吗?