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
From @WildYorkies on February 13, 2017 21:22
Steps to Reproduce:
test.pl6
test.pm6
sub print-board() # Wrong sub thing-for-that() # Wrong
See that the words print and for are highlighted as if they are keywords.
print
for
Change it to snake case and notice that it is like a normal variable again:
sub print_board() # Correct sub thing_for_that() # Correct
Solution:
Update this file with the kebab case addition.
Copied from original issue: microsoft/vscode#20563
The text was updated successfully, but these errors were encountered:
It's a problem of https://github.com/textmate/perl.tmbundle/blob/master/Syntaxes/Perl%206.tmLanguage that we use.
Sorry, something went wrong.
No branches or pull requests
From @WildYorkies on February 13, 2017 21:22
Steps to Reproduce:
test.pl6
ortest.pm6
See that the words
print
andfor
are highlighted as if they are keywords.Change it to snake case and notice that it is like a normal variable again:
Solution:
Update this file with the kebab case addition.
Copied from original issue: microsoft/vscode#20563
The text was updated successfully, but these errors were encountered: