Files
q-tools/vim/checklist.vim
ville rantanen ad96dc98e4 tidy up
2015-04-02 13:01:01 +03:00

17 lines
302 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!\[x\]![ ]!e
s!\[xXx\]![x]!e
endfunction