aboutsummaryrefslogtreecommitdiff
path: root/vim.dot.link/plugin/lib.vim
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-07-30 01:06:32 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-07-30 01:06:32 -0300
commit6da0eb60ce8435917e126006b9506cbcd31b6ff0 (patch)
treef7189dbd5ed6076b7138974d2b5742f191ce7152 /vim.dot.link/plugin/lib.vim
parentc0c227d51a3caf5502eac6bd65ab01117f12d29a (diff)
downloadvim-6da0eb60ce8435917e126006b9506cbcd31b6ff0.tar.gz
vim-6da0eb60ce8435917e126006b9506cbcd31b6ff0.tar.bz2
Feat: additional folding markers
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()
+" }}}