Files
q-tools/vim/checklist.vim
ville rantanen 6f5520ac82 tidy up
2015-04-02 12:59:43 +03:00

17 lines
312 B
VimL

function! Box_clear ()
mapclear!
map <space> :<C-U>call Flip_box()<CR>
map a i[ ] <ESC>hhh
set laststatus=2
set statusline=%f\ %=\ \[ChkB[x]\ spc,a]\ (%v,%l)
endfunction
call Box_clear()
function! Flip_box ()
s!\[ \]![xXx]!e
s!^\(\s*\)\[x\]!\1[ ]!e
s!\[xXx\]![x]!e
endfunction