forked from aniani/vim
patch 8.2.3738: screen is cleared when a FocusLost autocommand triggers
Problem: Screen is cleared when a FocusLost autocommand triggers. Solution: Do not redraw when at the hit-enter or more prompt. (closes #9274)
This commit is contained in:
@@ -852,7 +852,8 @@ get_keystroke(void)
|
|||||||
|
|
||||||
if (n == KEYLEN_REMOVED) // key code removed
|
if (n == KEYLEN_REMOVED) // key code removed
|
||||||
{
|
{
|
||||||
if (must_redraw != 0 && !need_wait_return && (State & CMDLINE) == 0)
|
if (must_redraw != 0 && !need_wait_return
|
||||||
|
&& (State & (CMDLINE|HITRETURN|ASKMORE)) == 0)
|
||||||
{
|
{
|
||||||
// Redrawing was postponed, do it now.
|
// Redrawing was postponed, do it now.
|
||||||
update_screen(0);
|
update_screen(0);
|
||||||
|
@@ -753,6 +753,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
3738,
|
||||||
/**/
|
/**/
|
||||||
3737,
|
3737,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user