diff --git a/autoload/vundle.vim b/autoload/vundle.vim index 6367a19..5811370 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -36,6 +36,6 @@ endf augroup bundle#command-t au! - au User PreInstall echo 'ok' - au User PostInstall !cd ruby/command-t && ruby extconf.rb && make clean && make + au User BundleInstallPre echo 'ok' + au User BundleInstallPost !cd ruby/command-t && ruby extconf.rb && make clean && make augroup END diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 21e176f..083d432 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -79,7 +79,7 @@ func! s:sync(bang, bundle) abort if 0 <= index(s:load_augroups(), aug_name) lcd `=a:bundle.path()` - exec 'doautocmd '.l:aug_name.' User PostInstall' + exec 'doautocmd '.l:aug_name.' User BundleInstallPost' lcd `=cwd` endif