9 lines
340 B
VimL
9 lines
340 B
VimL
" Highlight Class and Function names
|
|
syn match javaCustomParen "(" contains=javaParenT
|
|
syn match javaCustomFunc "\w\+\s*(" contains=javaCustomParen
|
|
syn match javaCustomScope "::"
|
|
syn match javaCustomClass "\w\+\s*::" contains=cCustomScope
|
|
|
|
hi def link javaCustomFunc Function
|
|
hi def link javaCustomClass Function
|
|
|