We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the example below. When viewed in VSCode, the first "my $a" line is colored correctly while "my $b" is incorrectly colored.
# Example showing that CSS heredoc is treated differently my $foo = <<"END"; Heredoc ending in end. END # Colored correctly: my $a = "a"; my $foo = <<"CSS"; Heredoc ending in end. CSS # Colored incorrectly: my $b = "b";
The text was updated successfully, but these errors were encountered:
Note that this is case sensitive. Using lowercase "css" does not have the same behavior.
Fortunately, the coloring right here on github is also demonstrating the issue.
Sorry, something went wrong.
I believe I have a commit in my open PR that will address this particular issue: 0f3c6df
No branches or pull requests
Consider the example below. When viewed in VSCode, the first "my $a" line is colored correctly while "my $b" is incorrectly colored.
The text was updated successfully, but these errors were encountered: