From de308ff406ef61df52ed3ad52dae6124ca680cd2 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 6 Mar 2011 17:21:45 -0600 Subject: [PATCH] remove require guard - was beaking case when bundle is already installed(downloaded) but not configured - should not affect other cases as adding require is pretty safe --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index c86f511..cca0ba7 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -59,7 +59,7 @@ endf func! s:install(bang, bundle) let synced = s:sync(a:bang, a:bundle) call s:log(a:bundle.name.' '.(synced ? '': ' already').' installed') - if synced | call vundle#config#require(a:bundle) | endif + call vundle#config#require(a:bundle) endf " TODO: make it pause after output in console mode