-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong highlight for raw string #259
Comments
The issue was mentioned here back in 2020. The link contains some extra information that may be helpful. The issue was closed there so that it could be reported somewhere more relevant instead, namely this repository. |
apparently it is a feature. r is for RE, use R for raw string |
AFAIK this is not a standard defined in any PEP, and popular code formatter such as black will convert any I get the reasoning behind this decision, and there were some arguments for it since TextMate and Sublime Text both highlight Python syntax this way by default, but with the widespread use of VSCode these days (which does not highlight raw strings in Python this way by default) this argument seems outdated. Ideally this idiosyncratic highlighting could be made optional, preferably off by default. |
Black specifically does not change |
Expected
Actual: The
\
of a raw string is the\
and not the escape character, but the hignlight still treats them as escapes.Originally from @AuroraTea in microsoft/vscode#190519
The text was updated successfully, but these errors were encountered: