Commit 7f0b577b authored by dnixx's avatar dnixx
Browse files

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
parent 75b9030f
...@@ -13,15 +13,15 @@ function vundle-init () { ...@@ -13,15 +13,15 @@ function vundle-init () {
function vundle () { function vundle () {
vundle-init vundle-init
vim -c "execute \"BundleInstall\" | q | q" vim -c "execute \"PluginInstall\" | q | q"
} }
function vundle-update () { function vundle-update () {
vundle-init vundle-init
vim -c "execute \"BundleInstall!\" | q | q" vim -c "execute \"PluginInstall!\" | q | q"
} }
function vundle-clean () { function vundle-clean () {
vundle-init vundle-init
vim -c "execute \"BundleClean!\" | q | q" vim -c "execute \"PluginClean!\" | q | q"
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment