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
The regex parser is based over Character, which is fine, but means that some programs could put combining scalars following meta characters and those will not compare equal. We have a few options:
We process scalars instead
We error out for any multi-scalar grapheme cluster that starts with a metacharacter scalar
The latter seems simpler and there's an easy (and highly advisable!) fall back path of representing the combining scalar through an escape.