From 285afffc4769c350ce7793c8b71140647a37aeea Mon Sep 17 00:00:00 2001 From: David Hegland Date: Wed, 23 Jun 2021 07:39:14 -0500 Subject: [PATCH] Fix perl definitions (#775) Closes #774 --- autoload/tagbar/types/uctags.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/tagbar/types/uctags.vim b/autoload/tagbar/types/uctags.vim index 87be168..5fd4a28 100644 --- a/autoload/tagbar/types/uctags.vim +++ b/autoload/tagbar/types/uctags.vim @@ -797,11 +797,11 @@ function! tagbar#types#uctags#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' : 'M', 'long' : 'modules', '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' : 'd', 'long' : 'subroutineDeclarations', 'fold' : 0, 'stl' : 0} \ ] let types.perl = type_perl " Perl 6 {{{1