blob: 22bdd1927fbd3d11021bbe5e232da097eded2e00 (
plain)
1
2
3
4
5
6
|
" Edit markdown lists
" Add and remove bullets with ease
nnoremap <silent> <buffer> <Plug>BujoAddnormal i-[]
nnoremap <silent> <buffer> <Plug>BujoChecknormal :.s/\[\]/\[x\]<Enter>
inoremap <silent> <buffer> <Plug>BujoAddinsert -[]
inoremap <silent> <buffer> <Plug>BujoCheckinsert <esc>:.s/\[\]/\[x\]<Enter>
|