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
Currently Positron and VSCode still add syntax highlighting to string literal:
In this case, bar is a string literal and will gets automatically escaped correctly by python. I would like to see it not highlight the missing escapes, similiar to how PyCharm does it.
The text was updated successfully, but these errors were encountered:
I struggled against this issue for a while coming from PyCharm to VSCode. Using some resources found online for editing TokenColorCustimizations and TextMateRules in the JSON settings, I was able to create a custom workaround at the link below. It's annoying having to manually enter hex codes for the colors to all match the way you'd expect inside of an r-string, but unless you are a person who changes themes often you should only have to make the edits once.
Currently Positron and VSCode still add syntax highlighting to string literal:
In this case,
bar
is a string literal and will gets automatically escaped correctly by python. I would like to see it not highlight the missing escapes, similiar to how PyCharm does it.The text was updated successfully, but these errors were encountered: