From 353701eb8c1949e879c7190505c0efec7fdd06a9 Mon Sep 17 00:00:00 2001 From: diegok Date: Tue, 20 Oct 2020 12:01:37 +0200 Subject: [PATCH] Undone changes on legacy exuberant-ctags types file --- autoload/tagbar/types/ctags.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autoload/tagbar/types/ctags.vim b/autoload/tagbar/types/ctags.vim index a4f5a4e..e225f13 100644 --- a/autoload/tagbar/types/ctags.vim +++ b/autoload/tagbar/types/ctags.vim @@ -466,11 +466,9 @@ function! tagbar#types#ctags#init(supported_types) abort let type_perl.kinds = [ \ {'short' : 'p', 'long' : 'packages', 'fold' : 1, 'stl' : 0}, \ {'short' : 'c', 'long' : 'constants', 'fold' : 0, 'stl' : 0}, - \ {'short' : 'a', 'long' : 'attributes', 'fold' : 0, 'stl' : 0}, \ {'short' : 'f', 'long' : 'formats', 'fold' : 0, 'stl' : 0}, \ {'short' : 'l', 'long' : 'labels', 'fold' : 0, 'stl' : 1}, - \ {'short' : 's', 'long' : 'subroutines', 'fold' : 0, 'stl' : 1}, - \ {'short' : 'm', 'long' : 'methods', 'fold' : 0, 'stl' : 1} + \ {'short' : 's', 'long' : 'subroutines', 'fold' : 0, 'stl' : 1} \ ] let types.perl = type_perl " PHP {{{1