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 acbae18 commit 2a3cd3aCopy full SHA for 2a3cd3a
2 files changed
src/ex_docmd.c
@@ -3528,13 +3528,15 @@ find_ex_command(
3528
if (eap->cmdidx == CMD_final && p - eap->cmd == 4)
3529
eap->cmdidx = CMD_finally;
3530
3531
+#ifdef FEAT_EVAL
3532
if (eap->cmdidx != CMD_SIZE && in_vim9script()
3533
&& !IS_WHITE_OR_NUL(*p) && !ends_excmd(*p) && *p != '!'
3534
&& (cmdnames[eap->cmdidx].cmd_argt & EX_NONWHITE_OK) == 0)
3535
{
3536
semsg(_(e_command_not_followed_by_white_space_str), eap->cmd);
3537
eap->cmdidx = CMD_SIZE;
3538
}
3539
+#endif
3540
3541
return p;
3542
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2140,
755
/**/
756
2139,
757
0 commit comments