Improve Vim todo command

This commit is contained in:
Talia 2019-06-03 15:34:17 +02:00
parent d19a3f32d2
commit 66056d320c
1 changed files with 3 additions and 3 deletions

6
vimrc
View File

@ -433,10 +433,10 @@ endfun
command! Snapshot call <sid>snapshot() command! Snapshot call <sid>snapshot()
command! -nargs=? Scratch enew | set buftype=nofile | set filetype=<args> command! -nargs=? Scratch enew | set buftype=nofile | set filetype=<args>
command! Todo enew | set buftype=nofile | set filetype=markdown | command! Todo call matchadd('Todo', '^\s*\[ \?\].*$') |
\ call matchadd('Todo', '^\s*\[ \?\].*$') |
\ call matchadd('Comment', '^\s*\[x\].*$') | \ call matchadd('Comment', '^\s*\[x\].*$') |
\ call matchadd('Error', '^\s*\[-\].*$') \ call matchadd('Comment', '^\s*\[-\].*$') |
\ call matchadd('Error', '^\s*\[!\].*$')
command! -nargs=? Tempfile exec 'new '.tempname() | set filetype=<args> | au BufDelete <buffer> call delete(expand('%')) command! -nargs=? Tempfile exec 'new '.tempname() | set filetype=<args> | au BufDelete <buffer> call delete(expand('%'))
" ┌──────────────────────────┐ " ┌──────────────────────────┐