diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index d3624a5..344413e 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Author: Peter Odding <peter@peterodding.com> -" Last Change: September 26, 2011 +" Last Change: October 29, 2011 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) @@ -40,6 +40,10 @@ 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' +endif + if !exists('g:easytags_python_script') let g:easytags_python_script = expand('<sfile>:p:h') . '/../misc/easytags/highlight.py' endif |