Change TagbarScopeType highlight to TagbarType

This commit is contained in:
Jan Larres 2011-04-26 02:01:13 +12:00
parent 8490f6a5c2
commit 25bbf9b889
2 changed files with 4 additions and 4 deletions

View File

@ -430,8 +430,8 @@ TagbarKind
TagbarScope
Tags that define a scope like classes, structs etc.
TagbarScopeType
The type of a scope after the colon, for example "class", "struct" etc.
TagbarType
The type of a tag or scope if available.
TagbarSignature
Function signatures.

View File

@ -40,14 +40,14 @@ else
endif
syntax match TagbarComment '^".*'
syntax match TagbarScopeType ' : \zs.*'
syntax match TagbarType ' : \zs.*'
syntax match TagbarSignature '(.*)'
syntax match TagbarPseudoID '\*\ze :'
highlight default link TagbarComment Comment
highlight default link TagbarKind Identifier
highlight default link TagbarScope Title
highlight default link TagbarScopeType Type
highlight default link TagbarType Type
highlight default link TagbarSignature SpecialKey
highlight default link TagbarPseudoID NonText
highlight default link TagbarFoldIcon Statement