Skip to content

Commit

Permalink
Add new field kind identifier.
Browse files Browse the repository at this point in the history
  • Loading branch information
weynhamz committed Jul 18, 2012
1 parent aa31b78 commit eed4fdc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugin/tagbar-phpctags.vim
Expand Up @@ -9,16 +9,20 @@ let g:tagbar_type_php = {
\ 'v:Variables:0',
\ 'f:Functions:0',
\ 'i:Interfaces:0',
\ 'c:Classes:0'
\ 'c:Classes:0',
\ 'm:Methods:0',
\ 'p:Properties:0'
\ ],
\ 'sro' : '::',
\ 'kind2scope' : {
\ 'c' : 'class',
\ 'm' : 'method',
\ 'f' : 'function',
\ 'i' : 'interface'
\ },
\ 'scope2kind' : {
\ 'class' : 'c',
\ 'method' : 'm',
\ 'function' : 'f',
\ 'interface': 'i'
\ }
Expand Down

0 comments on commit eed4fdc

Please sign in to comment.