How can I modify the Python config files to get a different color for comment lines.
In my scheme, anything after (and including) # is a faint white, barely readable.
I think it’s the same for triple quoted strings.
How can I set these to specific colors of my choosing.
Thanks,
Rob
Python Comments Line Color?
robknack
#1
0 Likes
The color for the comments comes from the color scheme you are currently using. To find out what color scheme is in use, you ca go to Preferences: Settings & see what is defined in the color_scheme key. There are 2 options after that :-
- Either manually create a file of the exact same name in the
Userdirectory & place a rule to change the color of the comment. - Use the
PackageDevpackage & choosePackageDev: Edit Current Color Schemeto get a split layout window & copy the rule that corresponds to the scopecommentfrom LHS & paste it inrulesarray of RHS & change theforegroundcolor to something you prefer.
0 Likes