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 aea6c3e commit d9337a0Copy full SHA for d9337a0
src/ex_docmd.c
@@ -3261,7 +3261,11 @@ set_one_cmd_context(xp, buff)
3261
++p;
3262
/* for python 3.x: ":py3*" commands completion */
3263
if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
3264
+ {
3265
3266
+ while (ASCII_ISALPHA(*p) || *p == '*')
3267
+ ++p;
3268
+ }
3269
len = (int)(p - cmd);
3270
3271
if (len == 0)
src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
738
739
static int included_patches[] =
740
{ /* Add new patch number below this line */
741
+/**/
742
+ 121,
743
/**/
744
120,
745
0 commit comments