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
\\G
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
The text was updated successfully, but these errors were encountered:
As far as I understand, it is because of this logic:
vscode-textmate/src/rule.ts
Lines 692 to 696 in 09effd8
Sorry, something went wrong.
No branches or pull requests
create a grammar with a rule containing
\\G
run the grammar on a file containing the unicode character 0xFFFF
�
expected:
it doesn't match anything, as there are no
\\G
anchors availableactual:
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
The text was updated successfully, but these errors were encountered: