19 lines
379 B
VimL
19 lines
379 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
|
|
set tabstop=4
|