From 073ddf69650624931e47ce59f6af412e982c03ae Mon Sep 17 00:00:00 2001 From: gmarik Date: Wed, 4 May 2011 23:30:09 -0500 Subject: [PATCH] with nosync consider bundles installed too --- 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 5350828..25e589a 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -63,7 +63,7 @@ endf func! s:sync(bang, bundle) abort - if a:bundle.nosync() | return 0 | endif + if a:bundle.nosync() | return a:bang | endif if a:bundle.installed() if !(a:bang) | return 0 | endif let cmd = 'cd '.shellescape(a:bundle.path()).' && git pull'