add new
status
This commit is contained in:
parent
769feb9fff
commit
8c4e0a4a31
@ -30,7 +30,8 @@ if (has('signs'))
|
||||
sign define Vu_error text=! texthl=Error
|
||||
sign define Vu_active text=> texthl=Comment
|
||||
sign define Vu_todate text=. texthl=Comment
|
||||
sign define Vu_updated text=+ texthl=Comment
|
||||
sign define Vu_new text=+ texthl=Comment
|
||||
sign define Vu_updated text=* texthl=Comment
|
||||
sign define Vu_deleted text=- texthl=Comment
|
||||
endif
|
||||
|
||||
|
@ -53,8 +53,10 @@ func! vundle#installer#run(func_name, name, ...) abort
|
||||
|
||||
redraw
|
||||
|
||||
if 'updated' == status
|
||||
if 'new' == status
|
||||
echo n.' installed'
|
||||
elseif 'updated' == status
|
||||
echo n.' updated'
|
||||
elseif 'todate' == status
|
||||
echo n.' already installed'
|
||||
elseif 'deleted' == status
|
||||
@ -219,9 +221,11 @@ func! s:sync(bang, bundle) abort
|
||||
return 'error'
|
||||
end
|
||||
|
||||
if out =~# 'up-to-date'
|
||||
if out =~# 'Cloning into '
|
||||
return 'new'
|
||||
elseif out =~# 'up-to-date'
|
||||
return 'todate'
|
||||
end
|
||||
endif
|
||||
|
||||
call s:add_to_updated_bundle_list(a:bundle)
|
||||
return 'updated'
|
||||
|
Loading…
Reference in New Issue
Block a user