From 5fb64098ef8fdd23799723bb324f5205aab9ed34 Mon Sep 17 00:00:00 2001 From: "Jeremy Pallats/starcraft.man" Date: Sun, 6 Apr 2014 07:48:25 -0400 Subject: [PATCH] Fix. --- autoload/vundle.vim | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/autoload/vundle.vim b/autoload/vundle.vim index 0b800a1..a17e19a 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -6,7 +6,7 @@ " Plugin Commands com! -nargs=+ -bar Plugin -\ call vundle#config#bundle_lazy() +\ call vundle#config#bundle() com! -nargs=? -bang -complete=custom,vundle#scripts#complete PluginInstall \ call vundle#installer#new('!' == '', ) @@ -57,11 +57,7 @@ sign define Vu_helptags text=* texthl=Comment endif func! vundle#begin(...) abort - let g:bundle_dir = len(a:000) > 0 ? expand(a:1, 1) : expand('$HOME/.vim/bundle', 1) - let g:bundles = [] - let g:updated_bundles = [] - let g:vundle_log = [] - let g:vundle_changelog = ['Updated Plugins:'] + call call('vundle#rc', a:000) com! -nargs=+ -bar Plugin call vundle#config#bundle_lazy() endf