0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Use the newest Vundle commands

Vundle changed the command names during an interface update. The old commands will be deprecated. https://github.com/gmarik/Vundle.vim/blob/v0.10.2/doc/vundle.txt#L372-L396
This commit is contained in:
dnixx 2015-04-21 21:34:26 +02:00
parent 75b9030f48
commit 7f0b577b14

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