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
Does this issue occur when all extensions are disabled?: Yes
VS Code Version: 1.89.0
OS Version: Windows 11
Steps to Reproduce:
Create a css file. Write, for example
@importurl('a-really-long\-url');
The syntax highlighting is wrong. It seems to not interpret the string as a whole.
This was mentioned in issue microsoft/vscode#125739, which was closed and locked with a reference to another repo, but that repo was archived. Is there a plan to fix this bug?
The text was updated successfully, but these errors were encountered:
caused by \\s*. it matches the ending newline.
resulting in the begin anchor \\G being placed at the beginning of the next line (VSCode TextMate bug?)
causing ^(?<!\\G) to always fail
I don't know why \\s* was placed there
as it does nothing other than cause issues
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
This was mentioned in issue microsoft/vscode#125739, which was closed and locked with a reference to another repo, but that repo was archived. Is there a plan to fix this bug?
The text was updated successfully, but these errors were encountered: