aboutsummaryrefslogtreecommitdiffstats
path: root/plugin/easytags.vim
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2013-06-20 00:24:00 +0200
committerPeter Odding <peter@peterodding.com>2013-06-20 00:24:00 +0200
commit5cf3313d0950e32ffd1d2f75b891f4ccc2aa7aa3 (patch)
tree3a3a75b15cfa3b81a42be405a49e6cc0a3113e10 /plugin/easytags.vim
parent28e2b55061fc5dcb6b1f78c002780e0dd7d2e637 (diff)
downloadvim-easytags-5cf3313d0950e32ffd1d2f75b891f4ccc2aa7aa3.tar.gz
Improve handling of ignored syntax groups (issue #57)
Diffstat (limited to 'plugin/easytags.vim')
-rw-r--r--plugin/easytags.vim6
1 files changed, 3 insertions, 3 deletions
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 <peter@peterodding.com>
-" 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')