create a grammar with a rule containing \\G
"match": "\\G",
"name": "invalid"
run the grammar on a file containing the unicode character 0xFFFF �
expected:
it doesn't match anything, as there are no \\G anchors available
actual:
it matches the unicode char 0xFFFF

abc�def
the char does actually pop up in multiple files inside VSCode
so this is not a non-issue issue

caused by
create a grammar with a rule containing
\\Grun the grammar on a file containing the unicode character 0xFFFF
�expected:
it doesn't match anything, as there are no
\\Ganchors availableactual:
it matches the unicode char 0xFFFF
abc�defthe char does actually pop up in multiple files inside VSCode

so this is not a non-issue issue
caused by