move signs to vundle.vim and use 3 states

- ! is error
- . is up-to-date
- * is updated
This commit is contained in:
gmarik
2011-08-04 16:33:30 -05:00
parent b4e7ca5e55
commit a3f1c1e537
3 changed files with 6 additions and 5 deletions

View File

@@ -27,6 +27,10 @@ com! -nargs=? -bang BundleSearch
au Filetype vundle call vundle#scripts#setup_view()
au Syntax vim syn keyword vimCommand Bundle
sign define VuEr text=! texthl=Error
sign define VuCu text=. texthl=Comment
sign define VuUp text=* texthl=Comment
func! vundle#rc(...) abort
let g:bundle_dir = len(a:000) > 0 ? expand(a:1) : expand('$HOME/.vim/bundle')