Files
q-tools/vim/checklist.vim
2016-08-24 13:41:20 +03:00

18 lines
365 B
VimL

function! Box_clear ()
mapclear!
map <space> :<C-U>call Flip_box()<CR>j^
imap <C-b> [ ]
set laststatus=2
set statusline=%f\ %=\ ([x]\ spc,^b)\ (%v,%l)
hi StatusLine ctermfg=cyan ctermbg=black
endfunction
call Box_clear()
function! Flip_box ()
s!\[ \]![xXx]!eg
s!\[x\]![ ]!eg
s!\[xXx\]![x]!eg
endfunction
set filetype=markdown