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
Escaped double quotes are still highlighted as quotes I need to add quote in comment to fix back highlighting.
Example -- everything after itvalue definition get highlighted in one color
grammar SomeGrammar { token itvalue { \" <-[\"]>+? \" } token somevalue { \" <-[\"]>+? \" } token another token { nothingSpecial } } }
While this works fine
grammar SomeGrammar { token itvalue { \" <-[\"]>+? \" } # " token somevalue { \" <-[\"]>+? \" } # " token another token { nothingSpecial } }
The text was updated successfully, but these errors were encountered:
Thanks for the workaround in the meantime....
Sorry, something went wrong.
No branches or pull requests
Escaped double quotes are still highlighted as quotes
I need to add quote in comment to fix back highlighting.
Example -- everything after itvalue definition get highlighted in one color
While this works fine
The text was updated successfully, but these errors were encountered: