Skip to content

Commit

Permalink
Merge branch 'release/0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
weynhamz committed Jun 24, 2013
2 parents 9359618 + e9f7b6b commit bedf65d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
@@ -1,3 +1,8 @@
Version 0.5
-----------

* work with phpctags v0.5

Version 0.4.2
-------------

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -3,7 +3,7 @@ source := README.md \
bin/phpctags \
plugin/tagbar-phpctags.vim

version := 0.4.2
version := 0.5

.PHONY: all
all: bin/phpctags
Expand Down
12 changes: 9 additions & 3 deletions plugin/tagbar-phpctags.vim
Expand Up @@ -24,19 +24,25 @@ let g:tagbar_type_php = {
\ 'i:Interfaces:0',
\ 'c:Classes:0',
\ 'p:Properties:0:0',
\ 'm:Methods:1'
\ 'm:Methods:1',
\ 'n:Namespaces:0',
\ 't:Traits:0',
\ ],
\ 'sro' : '::',
\ 'kind2scope' : {
\ 'c' : 'class',
\ 'm' : 'method',
\ 'f' : 'function',
\ 'i' : 'interface'
\ 'i' : 'interface',
\ 'n' : 'namespace',
\ 't' : 'trait',
\ },
\ 'scope2kind' : {
\ 'class' : 'c',
\ 'method' : 'm',
\ 'function' : 'f',
\ 'interface' : 'i'
\ 'interface' : 'i',
\ 'namespace' : 'n',
\ 'trait' : 't',
\ }
\ }

0 comments on commit bedf65d

Please sign in to comment.