-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrongly colored perl expression #21
Comments
@pcherkasova Can you paste the full snippet? |
From @pcherkasova on June 16, 2016 23:25 Here you are: sub parse_name { [cid:98af86f9-e187-4937-82e2-4b1f42fd60ab] From: Martin Aeschlimann [email protected] @pcherkasovahttps://github.com/pcherkasova Can you paste the full snippet? You are receiving this because you were mentioned. |
@pcherkasova This looks caused by the combination of the One workaround is to use I have no insight as to how to fix this though. |
Here's another use case where it needs m// in split, but only in some cases: my ($b) = split /-/, $a;
foo();
my ($c) = split /__DATA_/, $a;
bar1();
my ($d) = split /_DATA__/, $a;
bar2();
my ($e) = split m/__DATA__/, $a;
baz1();
my ($f) = split /__DATA__/, $a;
baz2(); Note how |
From @pcherkasova on June 6, 2016 21:53
Steps to Reproduce:
Copied from original issue: microsoft/vscode#7270
The text was updated successfully, but these errors were encountered: