diff options
author | Peter Odding <peter@peterodding.com> | 2013-06-19 19:36:32 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2013-06-19 19:36:32 +0200 |
commit | 28e2b55061fc5dcb6b1f78c002780e0dd7d2e637 (patch) | |
tree | 1d72bb557654d33332cd3679ed4b0ba570e191f6 /autoload | |
parent | 3050c9b36c2591b1ef904d0d187b72a1c9cd4177 (diff) | |
download | vim-easytags-28e2b55061fc5dcb6b1f78c002780e0dd7d2e637.tar.gz |
Bug fix: Don't highlight C tags inside #if 0 and Doxygen comments (issue #57)
See issue #57 on GitHub:
https://github.com/xolox/vim-easytags/issues/57
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/xolox/easytags.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index a1602cb..92772cd 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -1,9 +1,9 @@ " Vim script " Author: Peter Odding <peter@peterodding.com> -" Last Change: June 17, 2013 +" Last Change: June 19, 2013 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '3.3.7' +let g:xolox#easytags#version = '3.3.8' " Public interface through (automatic) commands. {{{1 |