From 5cf3313d0950e32ffd1d2f75b891f4ccc2aa7aa3 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Thu, 20 Jun 2013 00:24:00 +0200 Subject: Improve handling of ignored syntax groups (issue #57) --- plugin/easytags.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugin/easytags.vim') diff --git a/plugin/easytags.vim b/plugin/easytags.vim index d3ba579..d7033cf 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Author: Peter Odding -" Last Change: June 19, 2013 +" Last Change: June 20, 2013 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) @@ -40,8 +40,8 @@ if !exists('g:easytags_ignored_filetypes') let g:easytags_ignored_filetypes = '^tex$' endif -if !exists('g:easytags_ignored_syntax_groups') - let g:easytags_ignored_syntax_groups = '.*String.*,.*Comment.*,cIncluded,cCppInElse2,cCppOutIf2,cCppOut2,doxygen.*' +if exists('g:easytags_ignored_syntax_groups') + call xolox#misc#msg#warn("easytags.vim %s: The 'g:easytags_ignored_syntax_groups' option is no longer supported. It has been moved back into the code base for more flexible handling at runtime.", g:xolox#easytags#version) endif if !exists('g:easytags_python_script') -- cgit v1.2.3