couple logging fixes

- log is global array so log can be viewed any time
- log gets written to a defined location ~/.vim-vundle/vundle.log
- TODO: write log changes as they happen
This commit is contained in:
gmarik
2011-08-18 16:30:32 -05:00
parent 530dbb8001
commit 5c06a28fca
3 changed files with 7 additions and 4 deletions

View File

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