Skip to content

Commit

Permalink
Bug fix: Print the right message after :verbose UpdateTags!
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jun 13, 2011
1 parent bda802c commit 2094759
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload/xolox/easytags.vim
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugin/easytags.vim
Expand Up @@ -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
Expand Down

0 comments on commit 2094759

Please sign in to comment.