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
User
directory & place a rule to change the color of the comment. - Use the
PackageDev
package & choosePackageDev: Edit Current Color Scheme
to get a split layout window & copy the rule that corresponds to the scopecomment
from LHS & paste it inrules
array of RHS & change theforeground
color to something you prefer.
0 Likes