diff options
author | Nir Atias <atiasnir@post.tau.ac.il> | 2013-07-10 11:12:59 +0300 |
---|---|---|
committer | Nir Atias <atiasnir@post.tau.ac.il> | 2013-07-10 11:12:59 +0300 |
commit | 57c43f31ce1904c877b10c8d4c09437d5ac43342 (patch) | |
tree | a5e7b1baf925fefa2fe6ac8d17392bd3b7cd7c41 /autoload | |
parent | aae2df969a3d233ccbcf9cbd56bce4abfcd9ffbe (diff) | |
download | vim-easytags-57c43f31ce1904c877b10c8d4c09437d5ac43342.tar.gz |
add highlighting for java interfaces. tested with ctags-5.8
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/xolox/easytags.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index b98683e..105c846 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -1052,11 +1052,17 @@ call xolox#easytags#define_tagkind({ 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 |