diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | autoload/xolox/easytags.vim | 6 | ||||
-rw-r--r-- | doc/easytags.txt | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -278,7 +278,7 @@ If you have questions, bug reports, suggestions, etc. the author can be contacte ## License This software is licensed under the [MIT license](http://en.wikipedia.org/wiki/MIT_License). -© 2011 Peter Odding <<peter@peterodding.com>>. +© 2013 Peter Odding <<peter@peterodding.com>>. [canon]: http://en.wikipedia.org/wiki/Canonicalization 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 diff --git a/doc/easytags.txt b/doc/easytags.txt index b2b5fdf..a5ca306 100644 --- a/doc/easytags.txt +++ b/doc/easytags.txt @@ -580,7 +580,7 @@ If you like this plug-in please vote for it on Vim Online [16]. *easytags-license* License ~ -This software is licensed under the MIT license [17]. Copyright 2011 Peter +This software is licensed under the MIT license [17]. Copyright 2013 Peter Odding <peter@peterodding.com>. =============================================================================== |