diff --git a/autoload/vundle.vim b/autoload/vundle.vim index 3bd67c5..1ac74e1 100644 --- a/autoload/vundle.vim +++ b/autoload/vundle.vim @@ -33,6 +33,7 @@ sign define Vu_todate text=. texthl=Comment sign define Vu_new text=+ texthl=Comment sign define Vu_updated text=* texthl=Comment sign define Vu_deleted text=- texthl=Comment +sign define Vu_helptags text=* texthl=Comment endif diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 730db3a..5a1a5ee 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -65,6 +65,8 @@ func! vundle#installer#run(func_name, name, ...) abort echo n.' already installed' elseif 'deleted' == status echo n.' deleted' + elseif 'helptags' == status + echo n.' regenerated' elseif 'error' == status echohl Error echo 'Error processing '.n @@ -105,7 +107,7 @@ endf func! vundle#installer#docs() abort call vundle#installer#helptags(g:bundles) - return 'updated' + return 'helptags' endf func! vundle#installer#helptags(bundles) abort