-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
BugThe observed behaviour is incorrect or unexpected.The observed behaviour is incorrect or unexpected.C-Low Hanging FruitIdeal issue for new contributors.Ideal issue for new contributors.S-Nice to haveThe bug fix or feature would be nice but doesn't currently have much negative impact.The bug fix or feature would be nice but doesn't currently have much negative impact.T-EditorsInvolves editor support.Involves editor support.
Description
\x
is the character null \0
not hexadecimal
should use hexadecimal \h
instead
or [a-fA-F0-9]
(if you want to be explicit as \h
is horizontal whitespace in some regex engines)

match: ([0-9]+|0b[01]+|0o[0-8]+|0x\x+) |
here's my VSCode extension to help with authoring TextMate grammars https://marketplace.visualstudio.com/items?itemName=RedCMD.tmlanguage-syntax-highlighter
Metadata
Metadata
Assignees
Labels
BugThe observed behaviour is incorrect or unexpected.The observed behaviour is incorrect or unexpected.C-Low Hanging FruitIdeal issue for new contributors.Ideal issue for new contributors.S-Nice to haveThe bug fix or feature would be nice but doesn't currently have much negative impact.The bug fix or feature would be nice but doesn't currently have much negative impact.T-EditorsInvolves editor support.Involves editor support.