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
No known key found for this signature in database
GPG Key ID: E49661C8892FB65B

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},