浏览代码

Merge pull request #1711 from bertabus/master

Vundle clean function
Robby Russell 12 年之前
父节点
当前提交
2a0c1d7b92
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      plugins/vundle/vundle.plugin.zsh

+ 5 - 1
plugins/vundle/vundle.plugin.zsh

@@ -16,8 +16,12 @@ function vundle () {
   vim -c "execute \"BundleInstall\" | q | q"
 }
 
-
 function vundle-update () {
   vundle-init
   vim -c "execute \"BundleInstall!\" | q | q"
 }
+
+function vundle-clean () {
+  vundle-init
+  vim -c "execute \"BundleClean!\" | q | q"
+}