From 242f0ae933bc9935b3b8d242eb139996dbd68c9c Mon Sep 17 00:00:00 2001 From: Brian Nash Date: Thu, 19 Feb 2015 09:52:15 -0500 Subject: [PATCH] Add log entry for each dependency. --- autoload/vundle/installer.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index c8c4154..f29efce 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -23,7 +23,7 @@ func! vundle#installer#new(bang, ...) abort endf -" --------------------------------------------------------------------------- +" ---------------------------------------------------------------------------dep " Iterate over all lines in a Vundle window and execute the given command for " every line. Used by the installation and cleaning functions. " @@ -449,6 +449,7 @@ func! s:sync(bang, bundle) abort for dependency in deps if !has_key(g:bundle_names, dependency) let newbundle = vundle#config#bundle(dependency) + call s:log("Dependency '" . dependency . "'") if (s:sync(a:bang, newbundle) == 'error') return 'error' endif