From 76e9076ef487df8fe2154d438d5795fe98149b56 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 31 Mar 2016 23:06:11 +0900 Subject: [PATCH] Clear message on retry Close #459 --- plug.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 18aa102..df3c06a 100644 --- a/plug.vim +++ b/plug.vim @@ -660,7 +660,7 @@ function! s:switch_out(...) endfunction function! s:finish_bindings() - nnoremap R :silent! call retry() + nnoremap R :call retry() nnoremap D :PlugDiff nnoremap S :PlugStatus nnoremap U :call status_update() @@ -812,6 +812,7 @@ function! s:retry() if empty(s:update.errors) return endif + echo call s:update_impl(s:update.pull, s:update.force, \ extend(copy(s:update.errors), [s:update.threads])) endfunction