-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix __name__ color. #4
Comments
Hey, sorry for taking a few weeks to respond. I agree with you about this, but "editor.tokenColorCustomizations": {
"[Darcula Pycharm with Dark GUI]": {
"textMateRules": [
{
"name": "Python magic method variable",
"scope": [
"source.python support.variable.magic",
],
"settings": {
"foreground": "#9E419E", // Low-contrast purple
}
},
]
},
"[Darcula Pycharm with Light GUI]": {
"textMateRules": [
{
"name": "Python magic method variable",
"scope": [
"source.python support.variable.magic",
],
"settings": {
"foreground": "#9E419E", // Low-contrast purple
}
},
]
},
},
|
@garytyler Thanks for responding! I'm a little bit lose on how to add it to the settings.json file in VSCode. Could you please explain it a little bit? Thanks! |
@PotatoWatch To edit your settings.json, press F1 in VS Code then type "open settings (json)" and select that option. Paste the snippet in there. It'll need to go in between the outermost curly braces. See what is json?. Let me know how it goes. Also, I have a correction. You're right about this not being the correct color for the module level |
Thanks! |
It's blinding me right now.
It should look more like this I think:
If not, just make the purple not as bright. Thanks.
The text was updated successfully, but these errors were encountered: