We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db319f0 commit 3ffddb5Copy full SHA for 3ffddb5
2 files changed
plugin/bullets.vim
@@ -421,7 +421,8 @@ fun! s:next_num_bullet(bullet)
421
endfun
422
423
fun! s:next_chk_bullet(bullet)
424
- return '- [ ]'
+ let l:checkbox_markers = split(g:bullets_checkbox_markers, '\zs')
425
+ return '- [' . l:checkbox_markers[0] . ']'
426
427
" }}}
428
spec/checkboxes_spec.rb
@@ -226,7 +226,7 @@
226
# Hello there
227
- [✓] first bullet
228
- [◐] second bullet
229
- \t- [ ] third bullet
+ \t- [✗] third bullet
230
\t- [✓] fourth bullet
231
- [✓] fifth bullet
232
- [✗] sixth bullet
0 commit comments