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 7309528 commit 319afe3Copy full SHA for 319afe3
src/option.c
@@ -5880,7 +5880,7 @@ did_set_string_option(
5880
* separator (slash and/or backslash), wildcards and characters that are
5881
* often illegal in a file name. */
5882
else if ((options[opt_idx].flags & P_NFNAME)
5883
- && vim_strpbrk(*varp, (char_u *)"/\\*?[|<>") != NULL)
+ && vim_strpbrk(*varp, (char_u *)"/\\*?[|;&<>\r\n") != NULL)
5884
{
5885
errmsg = e_invarg;
5886
}
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
+ 100,
769
/**/
770
99,
771
0 commit comments