1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-08 00:10:41 +01:00

Merge pull request #4095 from kd35a/master

Use 'quit all' instead of counting needed quits
This commit is contained in:
Robby Russell
2015-08-12 21:10:53 -07:00

View File

@@ -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"
}