From 54be9a471091bdc8e7770d85623895c83e3f3153 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 9 Oct 2014 14:14:48 +0100 Subject: Initial commit --- .vim/after/ftplugin/vim/folding.vim | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vim/after/ftplugin/vim/folding.vim (limited to '.vim/after/ftplugin/vim/folding.vim') diff --git a/.vim/after/ftplugin/vim/folding.vim b/.vim/after/ftplugin/vim/folding.vim new file mode 100644 index 0000000..773b38e --- /dev/null +++ b/.vim/after/ftplugin/vim/folding.vim @@ -0,0 +1,25 @@ +function! VimFolds() + let thisline = getline(v:lnum) + if match(thisline,'^"" ') >= 0 + return ">1" + elseif match(thisline,'^" ') >=0 + return ">1" + else + return "=" + endif +endfunction + +function! VimFoldText() + let startline = getline(v:foldstart) + if match(startline,'^"" ') >= 0 + let title = substitute(startline,'^"" \(.*\)$','\1',"") + return '# ' . title + elseif match(startline,'^" ') >=0 + let title = substitute(startline,'^" \(.*\)$','\1',"") + return ' ## ' .title + endif +endfunction + +setlocal foldmethod=expr +setlocal foldexpr=VimFolds() +setlocal foldtext=VimFoldText() -- cgit v1.2.3