diff options
author | Peter Odding <peter@peterodding.com> | 2013-04-21 12:11:48 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2013-04-21 12:11:48 +0200 |
commit | 3181ba441c96ff408c84a44ed59e87b77240c456 (patch) | |
tree | 091fe3af6509db78163c38fc09aa0b19e3f42d60 /autoload | |
parent | 577885f400266f53e9d3b408a959a3b89327be91 (diff) | |
parent | 61b7bca82f9b9901c959b844e15f31cd3587cd48 (diff) | |
download | vim-easytags-3181ba441c96ff408c84a44ed59e87b77240c456.tar.gz |
Merge pull request #36
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/xolox/easytags.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 02ae1e5..8113942 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -1,9 +1,9 @@ " Vim script " Author: Peter Odding <peter@peterodding.com> -" Last Change: April 20, 2013 +" Last Change: April 21, 2013 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '3.1.2' +let g:xolox#easytags#version = '3.1.3' call xolox#misc#compat#check('easytags', 1) @@ -132,7 +132,7 @@ function! xolox#easytags#update(silent, filter_tags, filenames) " {{{2 endif " When :UpdateTags was executed manually we'll refresh the dynamic " syntax highlighting so that new tags are immediately visible. - if !a:silent + if !a:silent && xolox#misc#option#get('easytags_auto_highlight', 1) HighlightTags endif return 1 |