We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 036986f commit 57002adCopy full SHA for 57002ad
2 files changed
src/eval.c
@@ -8319,6 +8319,15 @@ ex_execute(exarg_T *eap)
8319
8320
if (ret != FAIL && ga.ga_data != NULL)
8321
{
8322
+ if (eap->cmdidx == CMD_echomsg || eap->cmdidx == CMD_echoerr)
8323
+ {
8324
+ /* Mark the already saved text as finishing the line, so that what
8325
+ * follows is displayed on a new line when scrolling back at the
8326
+ * more prompt. */
8327
+ msg_sb_eol();
8328
+ msg_start();
8329
+ }
8330
+
8331
if (eap->cmdidx == CMD_echomsg)
8332
8333
MSG_ATTR(ga.ga_data, echo_attr);
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 467,
769
/**/
770
466,
771
0 commit comments