diff --git a/autoload.vim b/autoload.vim index 105e160..8b8f8bd 100644 --- a/autoload.vim +++ b/autoload.vim @@ -1,6 +1,6 @@ " Vim script " Author: Peter Odding -" Last Change: September 5, 2010 +" Last Change: September 6, 2010 " URL: http://peterodding.com/code/vim/publish/ function! publish#resolve_files(directory, pathnames) " {{{1 @@ -20,8 +20,7 @@ function! publish#update_tags(pathnames) " {{{1 " Integration with easytags.vim to automatically create/update tags for all " files before they're published, see http://peterodding.com/code/vim/easytags/ if exists('g:loaded_easytags') - call map(a:pathnames, 'fnameescape(v:val)') - execute 'UpdateTags' join(a:pathnames) + call easytags#update(1, 0, a:pathnames) endif endfunction diff --git a/publish.vim b/publish.vim index c889530..a94f4fb 100644 --- a/publish.vim +++ b/publish.vim @@ -1,9 +1,9 @@ " Vim plug-in " Author: Peter Odding -" Last Change: September 5, 2010 +" Last Change: September 6, 2010 " URL: http://peterodding.com/code/vim/publish/ " License: MIT -" Version: 1.7 +" Version: 1.7.1 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 2252 1 :AutoInstall: publish.zip