1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

feat(dart_ctags): add inheritance tags

This commit is contained in:
John Castronuovo
2020-08-27 09:54:54 +02:00
parent 5e27cdb70b
commit 7dddde55b4

View File

@@ -259,10 +259,13 @@ function! s:InitTypes() abort
\ {'short' : 'C', 'long' : 'consts', 'fold' : 0, 'stl' : 0},
\ {'short' : 'v', 'long' : 'variables', 'fold' : 0, 'stl' : 0},
\ {'short' : 'F', 'long' : 'functions', 'fold' : 0, 'stl' : 0},
\ {'short' : 'x', 'long' : 'mixins', 'fold' : 0, 'stl' : 0},
\ {'short' : 'E', 'long' : 'enums', 'fold' : 0, 'stl' : 0},
\ {'short' : 'e', 'long' : 'constants', 'fold' : 0, 'stl' : 0},
\ {'short' : 'x', 'long' : 'mixins', 'fold' : 0, 'stl' : 0},
\ {'short' : 'c', 'long' : 'classes', 'fold' : 0, 'stl' : 0},
\ {'short' : 'd', 'long' : 'extends', 'fold' : 0, 'stl' : 0},
\ {'short' : 'w', 'long' : 'with', 'fold' : 0, 'stl' : 0},
\ {'short' : 'z', 'long' : 'implements', 'fold' : 0, 'stl' : 0},
\ {'short' : 'r', 'long' : 'constructors', 'fold' : 0, 'stl' : 0},
\ {'short' : 'a', 'long' : 'abstract functions', 'fold' : 0, 'stl' : 0},
\ {'short' : 'f', 'long' : 'fields', 'fold' : 0, 'stl' : 0},