aboutsummaryrefslogtreecommitdiff
path: root/vim.dot.link/plugin/lib.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim.dot.link/plugin/lib.vim')
-rw-r--r--vim.dot.link/plugin/lib.vim8
1 files changed, 5 insertions, 3 deletions
diff --git a/vim.dot.link/plugin/lib.vim b/vim.dot.link/plugin/lib.vim
index 9e7b689..f1b2a30 100644
--- a/vim.dot.link/plugin/lib.vim
+++ b/vim.dot.link/plugin/lib.vim
@@ -1,9 +1,9 @@
-" lib.vim - Miscelaneous functions
+" lib.vim - Miscelaneous functions {{{
"
" Author: Silvio Rhatto <rhatto@riseup.net>
"
-" Checkbox handling
+" Checkbox handling {{{
"
" This is commented out because vitalk/vim-simple-todo is being used instead.
"
@@ -19,8 +19,9 @@
" call setline('.', substitute(line, '- ', '- \[ \] ', ''))
" endif
"endf
+" }}}
-" Remove trailing spaces
+" Remove trailing spaces {{{
"
" Thanks https://vi.stackexchange.com/a/456
fun! TrimWhitespace()
@@ -30,3 +31,4 @@ fun! TrimWhitespace()
endfun
command! TrimWhitespace call TrimWhitespace()
+" }}}