From f84fee88394131b5eed3dc7f00cf06545505e63e Mon Sep 17 00:00:00 2001 From: Matt Furden Date: Thu, 19 Apr 2012 13:59:45 -0700 Subject: [PATCH] Add message on how to view changelog after Update. If no errors exist, the status-line will inform users how to view the Changelog after BundleUpdate! is completed. --- autoload/vundle/installer.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index b7ed7c2..054f5a2 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -29,6 +29,10 @@ func! s:process(bang, cmd) let msg = 'With errors; press l to view log' endif + if 'updated' == g:vundle_last_status && empty(msg) + let msg = 'Bundles updated; press u to view changelog' + endif + " goto next one exec ':+1'