diff options
author | Max Gonzih <gonzih@gmail.com> | 2011-09-02 16:06:32 +0300 |
---|---|---|
committer | Max Gonzih <gonzih@gmail.com> | 2011-09-02 16:06:32 +0300 |
commit | fe175661fddd04691cc03012f84490e729cf2bae (patch) | |
tree | db7747cd4eb4a88e0258bde83c59fa08b8123cc3 /plugins/vundle/vundle.plugin.zsh | |
parent | 499819ced108aa4b0d90dd0ac922a174c965d814 (diff) | |
download | zsh-fe175661fddd04691cc03012f84490e729cf2bae.tar.gz zsh-fe175661fddd04691cc03012f84490e729cf2bae.tar.bz2 zsh-fe175661fddd04691cc03012f84490e729cf2bae.zip |
vundle call fixed for new vundle version
Diffstat (limited to 'plugins/vundle/vundle.plugin.zsh')
-rw-r--r-- | plugins/vundle/vundle.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh index 39c36ac59..d7ab4858d 100644 --- a/plugins/vundle/vundle.plugin.zsh +++ b/plugins/vundle/vundle.plugin.zsh @@ -12,11 +12,11 @@ function vundle-init () { function vundle () { vundle-init - vim -c "execute \"BundleInstall\" | q" + vim -c "execute \"BundleInstall\" | q | q" } function vundle-update () { vundle-init - vim -c "execute \"BundleInstall!\" | q" + vim -c "execute \"BundleInstall!\" | q | q" } |