Browse Source

Use 'quit all' instead of counting needed quits

Fredrik Strandin 9 years ago
parent
commit
546b99ad4c
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 \"PluginInstall\" | q | q"
+  vim -c "execute \"PluginInstall\" | qa"
 }
 
 function vundle-update () {
   vundle-init
-  vim -c "execute \"PluginInstall!\" | q | q"
+  vim -c "execute \"PluginInstall!\" | qa"
 }
 
 function vundle-clean () {
   vundle-init
-  vim -c "execute \"PluginClean!\" | q | q"
+  vim -c "execute \"PluginClean!\" | qa"
 }