Skip to content

Instantly share code, notes, and snippets.

@olmokramer
Last active April 30, 2021 22:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olmokramer/feadbf14a055efd46a8e1bf1e4be4447 to your computer and use it in GitHub Desktop.
Save olmokramer/feadbf14a055efd46a8e1bf1e4be4447 to your computer and use it in GitHub Desktop.
Markdown checkbox toggle mappings for Vim
" ~/.vim/autoload/markdown/checkbox.vim
let s:bullet = '^\s*\%(\d\+\.\|[-+*]\)'
function! markdown#checkbox#toggle(...) abort
let c = a:0 ? a:1 : toupper(escape(nr2char(getchar()), '\.*'))
if c !~ '\p'
return
endif
call search(s:bullet, 'bcW')
for i in range(v:count1)
try
execute 'keeppatterns s/' . s:bullet . '\s\+\[\zs.\ze\]/\=submatch(0) == c ? " " : c/'
catch /E486/
execute 'keeppatterns s/' . s:bullet . '\s\zs/[' . c . '] /'
endtry
if i < v:count1 - 1 && !search(s:bullet, 'W')
break
endif
endfor
if exists('*repeat#set')
call repeat#set(":\<C-u>call markdown#checkbox#toggle('" . c . "')\<CR>")
endif
endfunction
function! markdown#checkbox#remove() abort
call search(s:bullet, 'bcW')
try
for i in range(v:count1)
execute 'keeppatterns s/' . s:bullet . '\s\zs\s*\[.\] //'
if i < v:count1 - 1 && !search(s:bullet, 'W')
break
endif
endfor
catch /E486/
" No checkbox found.
endtry
if exists('*repeat#set')
call repeat#set(":\<C-u>call markdown#checkbox#remove()\<CR>")
endif
endfunction
" ~/.vim/after/ftplugin/markdown.vim
nnoremap <buffer> gx :<C-u>call markdown#checkbox#toggle()<CR>
nnoremap <buffer> gX :<C-u>call markdown#checkbox#remove()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment