Skip to content

Commit

Permalink
add highlighting for java interfaces. tested with ctags-5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Nir Atias committed Jul 10, 2013
1 parent aae2df9 commit 57c43f3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions autoload/xolox/easytags.vim
Expand Up @@ -1050,13 +1050,19 @@ call xolox#easytags#define_tagkind({
\ 'hlgroup': 'javaClass',
\ 'tagkinds': 'c'})

call xolox#easytags#define_tagkind({
\ 'filetype': 'java',
\ 'hlgroup': 'javaInterface',
\ 'tagkinds': 'i'})

call xolox#easytags#define_tagkind({
\ 'filetype': 'java',
\ 'hlgroup': 'javaMethod',
\ 'tagkinds': 'm'})

highlight def link javaClass Identifier
highlight def link javaMethod Function
highlight def link javaInterface Identifier

" C#. {{{2

Expand Down

0 comments on commit 57c43f3

Please sign in to comment.