From a521559d7036c66a8d43287c5c17a48db771ac47 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 15 Nov 2019 19:58:21 +0100 Subject: [PATCH] SDelete: redraw more often to avoid pending dialog messages --- autoload/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index ff4660d..024a5bf 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -352,11 +352,11 @@ function! startify#session_delete(bang, ...) abort call inputrestore() if !filereadable(session_path) - echomsg 'No such session: '. session_path + redraw | echo 'No such session: '. session_path return endif - echo 'Really delete '. session_path .'? [y/n]' + redraw | echo 'Really delete '. session_path .'? [y/n]' | redraw if a:bang || nr2char(getchar()) == 'y' if delete(session_path) == 0 echo 'Deleted session '. session_path .'!'