Skip to content

Commit

Permalink
Bug fix: Don't highlight C tags inside #if 0 and Doxygen comments (is…
Browse files Browse the repository at this point in the history
…sue #57)

See issue #57 on GitHub:
  #57
  • Loading branch information
xolox committed Jun 19, 2013
1 parent 3050c9b commit 28e2b55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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

Expand Down
4 changes: 2 additions & 2 deletions plugin/easytags.vim
@@ -1,6 +1,6 @@
" Vim plug-in
" Author: Peter Odding <peter@peterodding.com>
" Last Change: June 17, 2013
" Last Change: June 19, 2013
" URL: http://peterodding.com/code/vim/easytags/
" Requires: Exuberant Ctags (http://ctags.sf.net)

Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 28e2b55

Please sign in to comment.