diff --git a/autoload/vundle.vim b/autoload/vundle.vim index b81650a..3bd67c5 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -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 diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index f1e6dbf..5b36f5e 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -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'