You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@infininight, Isn't the Unicode 'hexadecimal escape' character pattern \xhh? The grammar is incorrectly accepting a 7 in the first character position because the pattern x7F-xFF needs to be \x7F-\xFF, but instead this matches x,7,f-x,f,f. This pattern seems to appear a lot in the grammar. Would you like me to post a PR to fix all of them?
I'm not sure what \x7F-\xFF corresponds to, but it doesn't seem to be extended-ascii or UTF 8 \x00-\x7F does however correspond to ASCII
Should probably use \x{7F}-\x{FF} instead as it corresponds to UTF 8
(in the context of vscodes json based textmate engine)
From @SeamusConacher on February 22, 2017 15:34
Steps to Reproduce:
With any number starting with the number 7 the syntax colouring stays the variable colouring, rather than changing to the number colouring.
Copied from original issue: microsoft/vscode#21155
The text was updated successfully, but these errors were encountered: