mirror of
https://github.com/preservim/tagbar.git
synced 2025-02-13 03:20:44 +08:00
Add syntax highlighting
This commit is contained in:
parent
19dee23d8d
commit
ebf1d4b2e1
|
@ -181,6 +181,13 @@ function! s:OpenWindow()
|
|||
setlocal foldcolumn=1
|
||||
setlocal foldtext=v:folddashes.getline(v:foldstart)
|
||||
|
||||
syntax match Comment '^" .*' " Comments
|
||||
syntax match Identifier '^[^: ]\+$' " Non-scoped kinds
|
||||
syntax match Title '[^:(* ]\+\ze\*\? :' " Scope names
|
||||
syntax match Type ': \zs.*' " Scope types
|
||||
syntax match SpecialKey '(.*)' " Signatures
|
||||
syntax match NonText '\*\ze :' " Pseudo-tag identifiers
|
||||
|
||||
let cpoptions_save = &cpoptions
|
||||
set cpoptions&vim
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user