aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2013-04-21 12:11:48 +0200
committerPeter Odding <peter@peterodding.com>2013-04-21 12:11:48 +0200
commit3181ba441c96ff408c84a44ed59e87b77240c456 (patch)
tree091fe3af6509db78163c38fc09aa0b19e3f42d60
parent577885f400266f53e9d3b408a959a3b89327be91 (diff)
parent61b7bca82f9b9901c959b844e15f31cd3587cd48 (diff)
downloadvim-easytags-3181ba441c96ff408c84a44ed59e87b77240c456.tar.gz
Merge pull request #36
-rw-r--r--README.md2
-rw-r--r--autoload/xolox/easytags.vim6
-rw-r--r--doc/easytags.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 332a788..c8af518 100644
--- a/README.md
+++ b/README.md
@@ -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 &lt;<peter@peterodding.com>&gt;.
+© 2013 Peter Odding &lt;<peter@peterodding.com>&gt;.
[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>.
===============================================================================