mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00: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:
parent
75b9030f48
commit
7f0b577b14
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue