1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

Small syntax fix

This commit is contained in:
Jan Larres
2011-01-24 22:10:40 +13:00
parent 9f3e5f6ccb
commit cd17c19dea

View File

@@ -254,9 +254,9 @@ function! s:OpenWindow()
highlight default TagbarAccessProtected guifg=Blue ctermfg=Blue
highlight default TagbarAccessPrivate guifg=Red ctermfg=Red
syntax match TagbarAccessPublic '^\s*+'
syntax match TagbarAccessProtected '^\s*#'
syntax match TagbarAccessPrivate '^\s*-'
syntax match TagbarAccessPublic '^\s*+\ze[^ ]'
syntax match TagbarAccessProtected '^\s*#\ze[^ ]'
syntax match TagbarAccessPrivate '^\s*-\ze[^ ]'
if has('balloon_eval')
setlocal balloonexpr=TagbarBalloonExpr()