diff options
author | dnixx <nicoqh@gmail.com> | 2015-04-21 21:34:26 +0200 |
---|---|---|
committer | dnixx <nicoqh@gmail.com> | 2015-04-21 21:34:26 +0200 |
commit | 7f0b577b142fad91ad04f03112498304c9f27dbb (patch) | |
tree | 25befef4db5e350021993d996f023986efba29a4 /plugins/vundle | |
parent | 75b9030f48a55a42849cc68b0fc5b92d66d236ac (diff) | |
download | zsh-7f0b577b142fad91ad04f03112498304c9f27dbb.tar.gz zsh-7f0b577b142fad91ad04f03112498304c9f27dbb.tar.bz2 zsh-7f0b577b142fad91ad04f03112498304c9f27dbb.zip |
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
Diffstat (limited to 'plugins/vundle')
-rw-r--r-- | plugins/vundle/vundle.plugin.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh index 830774fe3..b5f1c0bbf 100644 --- a/plugins/vundle/vundle.plugin.zsh +++ b/plugins/vundle/vundle.plugin.zsh @@ -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" } |