You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A match operator will not be highlighted as regex if it uses / delimiters without the m prefix, is matching $_ implicitly, and is used in an assignment statement directly after the = (e.g. is not in parentheses).
Example code:
$_ = 'Hello world';
my ($match) = /Hello\s+(\S*)/;
One workaround is to use the m prefix:
The text was updated successfully, but these errors were encountered:
chrstphrchvz
added a commit
to asb-capfan/Tk-TableMatrix
that referenced
this issue
Oct 24, 2020
Observed in Visual Studio Code 1.50.0.
A match operator will not be highlighted as regex if it uses
/
delimiters without them
prefix, is matching$_
implicitly, and is used in an assignment statement directly after the=
(e.g. is not in parentheses).Example code:
One workaround is to use the
m
prefix:The text was updated successfully, but these errors were encountered: