diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 18:45:28 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 18:45:28 -0300 |
commit | 2a5476d79b9db791200a8d38ac7fd552aff46783 (patch) | |
tree | 481a1b55d9147f187cc815f678da61d54beea922 /vim.dot.link/plugin/lib.vim | |
parent | a91d756f65f67f53de78385b660b1345c60d575f (diff) | |
download | vim-2a5476d79b9db791200a8d38ac7fd552aff46783.tar.gz vim-2a5476d79b9db791200a8d38ac7fd552aff46783.tar.bz2 |
Feat: shortcut to insert current date
Diffstat (limited to 'vim.dot.link/plugin/lib.vim')
-rw-r--r-- | vim.dot.link/plugin/lib.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim.dot.link/plugin/lib.vim b/vim.dot.link/plugin/lib.vim index 7e71c6f..0e4cafa 100644 --- a/vim.dot.link/plugin/lib.vim +++ b/vim.dot.link/plugin/lib.vim @@ -5,6 +5,8 @@ " Checkbox handling " +" This is commented out because vitalk/vim-simple-todo is being used instead. +" " Thanks https://www.reddit.com/r/vim/comments/slqsao/readymade_solution_for_handling_markdown/ "function! ToggleCheckbox() " let line = getline('.') @@ -17,5 +19,3 @@ " call setline('.', substitute(line, '- ', '- \[ \] ', '')) " endif "endf -" -"nnoremap <Leader>c :call ToggleCheckbox()<CR> |