summaryrefslogtreecommitdiff
path: root/.vim/after/ftplugin/vim/folding.vim
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2014-10-31 22:01:56 +0000
committerUrbain Vaes <urbain@vaes.uk>2014-10-31 22:01:56 +0000
commit44a3ed3384a68c172943a7db6992e2dffa88230b (patch)
treed5d79c06bd464e7026708de35a0f73ec0d16317f /.vim/after/ftplugin/vim/folding.vim
parent0fcd6967752813b7e8281c27bd9bc02e6deda34a (diff)
Commit new version (no dots, vim folder and mutt folder)
Diffstat (limited to '.vim/after/ftplugin/vim/folding.vim')
-rw-r--r--.vim/after/ftplugin/vim/folding.vim26
1 files changed, 0 insertions, 26 deletions
diff --git a/.vim/after/ftplugin/vim/folding.vim b/.vim/after/ftplugin/vim/folding.vim
deleted file mode 100644
index 572f779..0000000
--- a/.vim/after/ftplugin/vim/folding.vim
+++ /dev/null
@@ -1,26 +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()
-hi link folded comment