Files
q-tools/vim/checklist.vim
ville rantanen 9425f984e6 change key
2015-04-02 13:05:19 +03:00

17 lines
305 B
VimL

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