From e2d48b806e0e9719abbee2efff2d1af739979b94 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 25 Jun 2015 11:35:07 +0100 Subject: Merge vim and neovim configs --- nvim/after/ftplugin/vim/folding.vim | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 nvim/after/ftplugin/vim/folding.vim (limited to 'nvim/after/ftplugin/vim') diff --git a/nvim/after/ftplugin/vim/folding.vim b/nvim/after/ftplugin/vim/folding.vim deleted file mode 100644 index 1454cbe..0000000 --- a/nvim/after/ftplugin/vim/folding.vim +++ /dev/null @@ -1,25 +0,0 @@ -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