Last active
April 30, 2021 22:19
-
-
Save olmokramer/feadbf14a055efd46a8e1bf1e4be4447 to your computer and use it in GitHub Desktop.
Markdown checkbox toggle mappings for Vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ~/.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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ~/.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