summaryrefslogtreecommitdiff
path: root/plugins/vundle
diff options
context:
space:
mode:
authorAndrew Janke <andrew@apjanke.net>2015-09-03 13:05:24 -0400
committerAndrew Janke <andrew@apjanke.net>2015-09-03 13:05:24 -0400
commit93b4a6c02eeafb875de5d9bcccd73bdcd8265f40 (patch)
tree7cc87fcd416bf71cee77f30bf2e60cf607671f43 /plugins/vundle
parent689b5ab3c8c8bf30ee63cafb8401d7d95e41f359 (diff)
parent0532860c618aabc02d5dab34391b967e8e4c6272 (diff)
downloadzsh-93b4a6c02eeafb875de5d9bcccd73bdcd8265f40.tar.gz
zsh-93b4a6c02eeafb875de5d9bcccd73bdcd8265f40.tar.bz2
zsh-93b4a6c02eeafb875de5d9bcccd73bdcd8265f40.zip
Merge branch 'master' into osx-fix-tab-for-iterm
Conflicts: plugins/osx/osx.plugin.zsh
Diffstat (limited to 'plugins/vundle')
-rw-r--r--plugins/vundle/vundle.plugin.zsh16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh
index b5f1c0bbf..0f071597a 100644
--- a/plugins/vundle/vundle.plugin.zsh
+++ b/plugins/vundle/vundle.plugin.zsh
@@ -1,27 +1,27 @@
function vundle-init () {
- if [ ! -d ~/.vim/bundle/vundle/ ]
+ if [ ! -d ~/.vim/bundle/Vundle.vim/ ]
then
- mkdir -p ~/.vim/bundle/vundle/
+ mkdir -p ~/.vim/bundle/Vundle.vim/
fi
- if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
+ if [ ! -d ~/.vim/bundle/Vundle.vim/.git ] && [ ! -f ~/.vim/bundle/Vundle.vim/.git ]
then
- git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
- echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
+ git clone git://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
+ echo "\n\tRead about vim configuration for vundle at https://github.com/VundleVim/Vundle.vim\n"
fi
}
function vundle () {
vundle-init
- vim -c "execute \"PluginInstall\" | q | q"
+ vim -c "execute \"PluginInstall\" | qa"
}
function vundle-update () {
vundle-init
- vim -c "execute \"PluginInstall!\" | q | q"
+ vim -c "execute \"PluginInstall!\" | qa"
}
function vundle-clean () {
vundle-init
- vim -c "execute \"PluginClean!\" | q | q"
+ vim -c "execute \"PluginClean!\" | qa"
}