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
1 changed files with 3 additions and 3 deletions

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