From 2094759c5206d974732fa699018d33d6fca910d2 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Mon, 13 Jun 2011 16:13:39 +0200 Subject: [PATCH] Bug fix: Print the right message after :verbose UpdateTags! --- autoload/xolox/easytags.vim | 2 +- plugin/easytags.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 00b5baf..3c7f7dd 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -76,7 +76,7 @@ function! xolox#easytags#update(silent, filter_tags, filenames) " {{{2 if cfile != '' let msg = "%s: Updated tags for %s in %s." call xolox#misc#timer#stop(msg, s:script, expand('%:p:~'), starttime) - elseif a:0 > 0 + elseif !empty(a:filenames) let msg = "%s: Updated tags in %s." call xolox#misc#timer#stop(msg, s:script, starttime) else diff --git a/plugin/easytags.vim b/plugin/easytags.vim index bb2d441..e0c07a3 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.2.14 +" Version: 2.2.15 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip