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
Apparently, this extension doesn't recognize numbers (anymore).
I know from #27 that it once had this feature.
Numbers are now only recognized as simple properties (Command Palette > Developer: Inspect Editor Tokens and Scopes):
Is it possible to match only numbers with 1 . in them? This would prevent #27.
A suitable (partial) regex could look something like this: ([+-]?)([0-9]([0-9_]*[0-9])?)(\.[0-9]([0-9_]*[0-9])?)?$
The text was updated successfully, but these errors were encountered:
Apparently, this extension doesn't recognize numbers (anymore).
I know from #27 that it once had this feature.
Numbers are now only recognized as simple properties (
Command Palette > Developer: Inspect Editor Tokens and Scopes
):Is it possible to match only numbers with 1
.
in them? This would prevent #27.A suitable (partial) regex could look something like this:
([+-]?)([0-9]([0-9_]*[0-9])?)(\.[0-9]([0-9_]*[0-9])?)?$
The text was updated successfully, but these errors were encountered: