display: show the cursor position also right after the screen is resized
Bug existed since commit 8e226a9f
from half an hour ago.
master
parent
9875252fd7
commit
d7b2b55bf5
10
src/text.c
10
src/text.c
|
@ -3016,17 +3016,17 @@ void do_verbatim_input(void)
|
||||||
|
|
||||||
/* When something valid was obtained, unsuppress cursor-position display,
|
/* When something valid was obtained, unsuppress cursor-position display,
|
||||||
* insert the bytes into the edit buffer, and blank the status bar. */
|
* insert the bytes into the edit buffer, and blank the status bar. */
|
||||||
if (0 < count && count < 999) {
|
if (count > 0) {
|
||||||
if (ISSET(CONSTANT_SHOW))
|
if (ISSET(CONSTANT_SHOW))
|
||||||
lastmessage = VACUUM;
|
lastmessage = VACUUM;
|
||||||
|
|
||||||
inject(bytes, count);
|
if (count < 999)
|
||||||
|
inject(bytes, count);
|
||||||
|
|
||||||
wipe_statusbar();
|
wipe_statusbar();
|
||||||
} else if (count == 0)
|
} else
|
||||||
/* TRANSLATORS: An invalid verbatim Unicode code was typed. */
|
/* TRANSLATORS: An invalid verbatim Unicode code was typed. */
|
||||||
statusline(ALERT, _("Invalid code"));
|
statusline(ALERT, _("Invalid code"));
|
||||||
else
|
|
||||||
wipe_statusbar();
|
|
||||||
|
|
||||||
free(bytes);
|
free(bytes);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue