.vim/plugin/tagbar-types.vim

changeset 928
9674b3a2ad41
parent 872
bc8f07aedeb3
equal deleted inserted replaced
927:6cdcce4f0abd 928:9674b3a2ad41
62 \ 'ntype' : 'n' 62 \ 'ntype' : 'n'
63 \ }, 63 \ },
64 \ 'ctagsbin' : 'gotags', 64 \ 'ctagsbin' : 'gotags',
65 \ 'ctagsargs' : '-sort -silent' 65 \ 'ctagsargs' : '-sort -silent'
66 \ } 66 \ }
67
68 " https://github.com/wsdjeg/mdctags.rs
69 let g:tagbar_type_markdown = {
70 \ 'ctagsbin' : 'mdctags',
71 \ 'ctagsargs' : '',
72 \ 'sort' : 0,
73 \ 'kinds' : [
74 \ 'a:h1:0:0',
75 \ 'b:h2:0:0',
76 \ 'c:h3:0:0',
77 \ 'd:h4:0:0',
78 \ 'e:h5:0:0',
79 \ 'f:h6:0:0',
80 \ ],
81 \ 'sro' : '::',
82 \ 'kind2scope' : {
83 \ 'a' : 'h1',
84 \ 'b' : 'h2',
85 \ 'c' : 'h3',
86 \ 'd' : 'h4',
87 \ 'e' : 'h5',
88 \ 'f' : 'h6',
89 \ },
90 \ 'scope2kind' : {
91 \ 'h1' : 'a',
92 \ 'h2' : 'b',
93 \ 'h3' : 'c',
94 \ 'h4' : 'd',
95 \ 'h5' : 'e',
96 \ 'h6' : 'f',
97 \}
98 \}

mercurial