Create Changelog when performing BundleInstall!

Keeps track of the current commit with a vundle_update tag before
perfoming an update and adds all commits pulled in the update to a
Changelog accessible via pressing 'u' after BundleInstall! completes.
This commit is contained in:
Matt Furden
2012-04-04 19:26:13 -07:00
parent dd8356aea7
commit 09560847ca
5 changed files with 54 additions and 7 deletions

View File

@@ -37,6 +37,8 @@ endif
func! vundle#rc(...) abort
let g:bundle_dir = len(a:000) > 0 ? expand(a:1, 1) : expand('$HOME/.vim/bundle', 1)
let g:updated_bundles = []
let g:vundle_log = []
let g:vundle_changelog = ['Updated Bundles:']
call vundle#config#init()
endf