diff options
Diffstat (limited to 'vim.dot.link/plugin/key_mappings.vim')
-rw-r--r-- | vim.dot.link/plugin/key_mappings.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vim.dot.link/plugin/key_mappings.vim b/vim.dot.link/plugin/key_mappings.vim index 1b297f6..bde9e08 100644 --- a/vim.dot.link/plugin/key_mappings.vim +++ b/vim.dot.link/plugin/key_mappings.vim @@ -212,3 +212,13 @@ vmap <Leader>I <Plug>(simple-todo-new-list-item-start-of-line) vmap <Leader>X <Plug>(simple-todo-mark-as-undone) vmap <Leader>x <Plug>(simple-todo-mark-as-done) vmap <Leader>s <Plug>(simple-todo-mark-switch) + +" From lib.vim +"nnoremap <Leader>c :call ToggleCheckbox()<CR> + +" Insert the current date in ISO format +" +" Thanks https://vimtricks.com/p/insert-the-current-date-or-time/ +"map <leader>d :0put =strftime('%Y-%m-%d')<CR> +nnoremap <leader>d i<C-R>=strftime('%Y-%m-%d')<CR> +inoremap <leader>d <C-R>=strftime('%Y-%m-%d')<CR> |