From d424126b07b4e4b4b94b721b02bab737915e2a05 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sun, 29 Mar 2015 17:53:21 +0100 Subject: Commented custom fold latex --- vim/after/ftplugin/tex/folding.vim | 68 +++++++++++++++++++------------------- 1 file changed, 34 insertions(+), 34 deletions(-) (limited to 'vim') diff --git a/vim/after/ftplugin/tex/folding.vim b/vim/after/ftplugin/tex/folding.vim index 2e8b612..096c8a9 100644 --- a/vim/after/ftplugin/tex/folding.vim +++ b/vim/after/ftplugin/tex/folding.vim @@ -1,34 +1,34 @@ -function! TexFolds() - let thisline = getline(v:lnum) - if match(thisline,'^\\chapter') >= 0 - return ">1" - elseif match(thisline,'^\\section') >= 0 - return ">1" - elseif match(thisline,'^\\subsection') >=0 - return ">1" - elseif match(thisline,'^\\subsubsection') >=0 - return ">1" - else - return "=" - endif -endfunction - -function! TexFoldText() - let startline = getline(v:foldstart) - let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"") - if match(startline,'^\\chapter') >= 0 - return '*' . title . '' - elseif match(startline,'^\\section') >= 0 - return ' # ' . title - elseif match(startline,'^\\subsection') >=0 - return ' ## ' . title - elseif match(startline,'^\\subsubsection') >=0 - return ' ### ' . title - else - echom "Error, fold not recognized" - endif -endfunction - -setlocal foldmethod=expr -setlocal foldexpr=TexFolds() -setlocal foldtext=TexFoldText() +" function! TexFolds() +" let thisline = getline(v:lnum) +" if match(thisline,'^\\chapter') >= 0 +" return ">1" +" elseif match(thisline,'^\\section') >= 0 +" return ">1" +" elseif match(thisline,'^\\subsection') >=0 +" return ">1" +" elseif match(thisline,'^\\subsubsection') >=0 +" return ">1" +" else +" return "=" +" endif +" endfunction +" +" function! TexFoldText() +" let startline = getline(v:foldstart) +" let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"") +" if match(startline,'^\\chapter') >= 0 +" return '*' . title . '' +" elseif match(startline,'^\\section') >= 0 +" return ' # ' . title +" elseif match(startline,'^\\subsection') >=0 +" return ' ## ' . title +" elseif match(startline,'^\\subsubsection') >=0 +" return ' ### ' . title +" else +" echom "Error, fold not recognized" +" endif +" endfunction +" +" setlocal foldmethod=expr +" setlocal foldexpr=TexFolds() +" setlocal foldtext=TexFoldText() -- cgit v1.2.3