From 28e2b55061fc5dcb6b1f78c002780e0dd7d2e637 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Wed, 19 Jun 2013 19:36:32 +0200 Subject: 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 --- autoload/xolox/easytags.vim | 4 ++-- plugin/easytags.vim | 4 ++-- 2 files changed, 4 insertions(+), 4 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 -" 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 diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 8e4f8c9..d3ba579 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Author: Peter Odding -" Last Change: June 17, 2013 +" Last Change: June 19, 2013 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) @@ -41,7 +41,7 @@ if !exists('g:easytags_ignored_filetypes') endif if !exists('g:easytags_ignored_syntax_groups') - let g:easytags_ignored_syntax_groups = '.*String.*,.*Comment.*,cIncluded,cCppInElse2,cCppOutIf2' + let g:easytags_ignored_syntax_groups = '.*String.*,.*Comment.*,cIncluded,cCppInElse2,cCppOutIf2,cCppOut2,doxygen.*' endif if !exists('g:easytags_python_script') -- cgit v1.2.3