We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4795f0c commit 0f05b6cCopy full SHA for 0f05b6c
SomethingNeedDoing/NativeMacro/MacroParser.cs
@@ -74,7 +74,7 @@ public IMacroCommand ParseLine(string text)
74
/// <returns>The command parse info, or null if the text cannot be parsed.</returns>
75
private CommandParseInfo? ParseCommandStructure(string text)
76
{
77
- var match = Regex.Match(text, @"^/([\w-]+)(?:\s+(.*))?$");
+ var match = Regex.Match(text, @"^/(\S+)(?:\s+(.*))?$");
78
if (!match.Success)
79
return null;
80
0 commit comments