1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 13:50:09 +00:00

Merge pull request #3798 from dnixx/vundle-update

Use the newest Vundle commands
This commit is contained in:
Robby Russell 2015-06-14 22:16:34 -07:00
commit 058def3b91

View file

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