diff options
author | Peter Odding <peter@peterodding.com> | 2013-06-17 23:48:56 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2013-06-17 23:48:56 +0200 |
commit | 3050c9b36c2591b1ef904d0d187b72a1c9cd4177 (patch) | |
tree | 5ff19ff20d797962b11710fab3fc3a8843d90746 /autoload | |
parent | 7916b461688f25b84c2e8e6185124200474f0a1b (diff) | |
download | vim-easytags-3050c9b36c2591b1ef904d0d187b72a1c9cd4177.tar.gz |
Bug fix: Don't highlight C tags inside #if 0 (issue #57)
$VIMRUNTIME/syntax/c.vim is a bit of a mess, I can't make heads or tails
of it :-). In my simple #if 0 / #if 1 / #else tests this fixes the issue,
but I'm not sure that there are no corner cases left.
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 4db1a3c..a1602cb 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: May 25, 2013 +" Last Change: June 17, 2013 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '3.3.6' +let g:xolox#easytags#version = '3.3.7' " Public interface through (automatic) commands. {{{1 |