summaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/freefem/folding.vim
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
committerUrbain Vaes <urbain@vaes.uk>2016-04-19 15:24:25 +0100
commite146e947c52ac4adbe426b3f893faff1e46ed5f8 (patch)
tree1605bf4eb78cc619988c92632f3cee2a56143fd5 /vim/after/ftplugin/freefem/folding.vim
parent83bd503208d45fa837348441196dd07223b13e3e (diff)
Use GNU stow for dotfiles management
Diffstat (limited to 'vim/after/ftplugin/freefem/folding.vim')
-rw-r--r--vim/after/ftplugin/freefem/folding.vim20
1 files changed, 0 insertions, 20 deletions
diff --git a/vim/after/ftplugin/freefem/folding.vim b/vim/after/ftplugin/freefem/folding.vim
deleted file mode 100644
index 7d2f6fd..0000000
--- a/vim/after/ftplugin/freefem/folding.vim
+++ /dev/null
@@ -1,20 +0,0 @@
-function! FreeFemFolds()
- let thisline = getline(v:lnum)
- if match(thisline,'^/// ') >= 0
- return ">1"
- else
- return "="
- endif
-endfunction
-
-function! FreeFemFoldText()
- let startline = getline(v:foldstart)
- if match(startline,'^/// ') >= 0
- let title = substitute(startline,'^/// \(.*\)$','\1',"")
- return '# ' . title
- endif
-endfunction
-
-setlocal foldmethod=expr
-setlocal foldexpr=FreeFemFolds()
-setlocal foldtext=FreeFemFoldText()