diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-30 01:06:32 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-30 01:06:32 -0300 |
commit | 6da0eb60ce8435917e126006b9506cbcd31b6ff0 (patch) | |
tree | f7189dbd5ed6076b7138974d2b5742f191ce7152 /vim.dot.link/plugin/lib.vim | |
parent | c0c227d51a3caf5502eac6bd65ab01117f12d29a (diff) | |
download | vim-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.vim | 8 |
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() +" }}} |