diff options
author | Urbain Vaes <urbain@vaes.uk> | 2014-10-31 22:01:56 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2014-10-31 22:01:56 +0000 |
commit | 44a3ed3384a68c172943a7db6992e2dffa88230b (patch) | |
tree | d5d79c06bd464e7026708de35a0f73ec0d16317f /vim/after/ftplugin/tex | |
parent | 0fcd6967752813b7e8281c27bd9bc02e6deda34a (diff) |
Commit new version (no dots, vim folder and mutt folder)
Diffstat (limited to 'vim/after/ftplugin/tex')
-rw-r--r-- | vim/after/ftplugin/tex/folding.vim | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vim/after/ftplugin/tex/folding.vim b/vim/after/ftplugin/tex/folding.vim new file mode 100644 index 0000000..2e8b612 --- /dev/null +++ b/vim/after/ftplugin/tex/folding.vim @@ -0,0 +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() |