SDelete: redraw more often to avoid pending dialog messages
This commit is contained in:
parent
2ea9085789
commit
a521559d70
|
@ -352,11 +352,11 @@ function! startify#session_delete(bang, ...) abort
|
||||||
call inputrestore()
|
call inputrestore()
|
||||||
|
|
||||||
if !filereadable(session_path)
|
if !filereadable(session_path)
|
||||||
echomsg 'No such session: '. session_path
|
redraw | echo 'No such session: '. session_path
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
||||||
echo 'Really delete '. session_path .'? [y/n]'
|
redraw | echo 'Really delete '. session_path .'? [y/n]' | redraw
|
||||||
if a:bang || nr2char(getchar()) == 'y'
|
if a:bang || nr2char(getchar()) == 'y'
|
||||||
if delete(session_path) == 0
|
if delete(session_path) == 0
|
||||||
echo 'Deleted session '. session_path .'!'
|
echo 'Deleted session '. session_path .'!'
|
||||||
|
|
Loading…
Reference in a new issue