raku-mode
raku-mode copied to clipboard
Grammar highlighting issues escaped quotes
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 }
}
Thanks for the workaround in the meantime....