SDelete: redraw more often to avoid pending dialog messages

This commit is contained in:
Marco Hinz 2019-11-15 19:58:21 +01:00
parent 2ea9085789
commit a521559d70
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -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 .'!'