Browse Source

Merge pull request #3798 from dnixx/vundle-update

Use the newest Vundle commands
Robby Russell 9 years ago
parent
commit
058def3b91
1 changed files with 3 additions and 3 deletions
  1. 3 3
      plugins/vundle/vundle.plugin.zsh

+ 3 - 3
plugins/vundle/vundle.plugin.zsh

@@ -13,15 +13,15 @@ function vundle-init () {
 
 function vundle () {
   vundle-init
-  vim -c "execute \"BundleInstall\" | q | q"
+  vim -c "execute \"PluginInstall\" | q | q"
 }
 
 function vundle-update () {
   vundle-init
-  vim -c "execute \"BundleInstall!\" | q | q"
+  vim -c "execute \"PluginInstall!\" | q | q"
 }
 
 function vundle-clean () {
   vundle-init
-  vim -c "execute \"BundleClean!\" | q | q"
+  vim -c "execute \"PluginClean!\" | q | q"
 }