Browse Source

Added Vundle clean to remove bundles removed from vimrc

bertabus 11 years ago
parent
commit
c50b9a24f1
1 changed files with 5 additions and 1 deletions
  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"
+}