diff options
author | Robby Russell <robby@planetargon.com> | 2015-06-14 22:16:34 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-06-14 22:16:34 -0700 |
commit | 058def3b916c01a61b279d68d4d3e10fa5bec037 (patch) | |
tree | a9bc6a3d5bbc29d7835a6b7de0e20a123476be08 /plugins | |
parent | 5fba46a8c4b0bf61d3637cbedf342cc34e950824 (diff) | |
parent | 7f0b577b142fad91ad04f03112498304c9f27dbb (diff) | |
download | zsh-058def3b916c01a61b279d68d4d3e10fa5bec037.tar.gz zsh-058def3b916c01a61b279d68d4d3e10fa5bec037.tar.bz2 zsh-058def3b916c01a61b279d68d4d3e10fa5bec037.zip |
Merge pull request #3798 from dnixx/vundle-update
Use the newest Vundle commands
Diffstat (limited to 'plugins')
-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" } |