浏览代码

Merge pull request #3798 from dnixx/vundle-update

Use the newest Vundle commands
Robby Russell 9 年之前
父节点
当前提交
058def3b91
共有 1 个文件被更改,包括 3 次插入3 次删除
  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"
 }