Merge pull request #4095 from kd35a/master

Use 'quit all' instead of counting needed quits
master
Robby Russell 11 years ago
commit 8c3d4a9826
  1. 6
      plugins/vundle/vundle.plugin.zsh

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

Loading…
Cancel
Save