Add Active state and change signs

- > active
- + updated
- . up to date
- ! error
This commit is contained in:
gmarik 2011-08-04 16:48:59 -05:00
parent 05501d3614
commit 06f84c898d
2 changed files with 3 additions and 1 deletions

View File

@ -28,8 +28,9 @@ au Filetype vundle call vundle#scripts#setup_view()
au Syntax vim syn keyword vimCommand Bundle
sign define VuEr text=! texthl=Error
sign define VuAc text=> texthl=Comment
sign define VuCu text=. texthl=Comment
sign define VuUp text=* texthl=Comment
sign define VuUp text=+ texthl=Comment
func! vundle#rc(...) abort

View File

@ -46,6 +46,7 @@ func! vundle#installer#install(bang, name) abort
let b = vundle#config#init_bundle(a:name, {})
echo 'Installing '.b.name
exe ":sign place ".line('.')." line=".line('.')." name=VuAc buffer=" . bufnr("$")
let status = s:sync(a:bang, b)