Skip to content

Instantly share code, notes, and snippets.

@naddeoa
Last active March 2, 2021 20:21
Show Gist options
  • Save naddeoa/1b93a17b518a1edf5b50b1f39b68085b to your computer and use it in GitHub Desktop.
Save naddeoa/1b93a17b518a1edf5b50b1f39b68085b to your computer and use it in GitHub Desktop.
Tagbar definition for vim .notes files using markdown2ctags python script
let g:tagbar_type_notes = {
\ 'ctagstype': 'notes',
\ 'ctagsbin' : '~/files/bin/markdown2ctags',
\ 'ctagsargs' : '-f - --sort=yes --sro=\|',
\ 'kinds' : [
\ 's:sections',
\ 'i:images'
\ ],
\ 'sro' : '\|',
\ 'kind2scope' : {
\ 's' : 'section',
\ },
\ 'sort': 0,
\ }
@naddeoa
Copy link
Author

naddeoa commented Mar 2, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment