Open
Description
Solarized Dark and Light themes orginally does not color aritchmetical operators e.g. (=, +, -, ++, +=, &&, ||) for any language e.g.
Sublime Text 3 port follows these setting in some languages e.g. C++, Haskell but for other languages like Python or Ruby it colors these operators same as keywords. This is deviation from orginal theme and additionally it introduces noise.
I have prepared lines that has to be added to make Sublime scheme compatible with orginal one.
Add following lines to dark scheme:
<dict>
<key>name</key>
<string>Arithmetical, Assignment, Comparision Operators</string>
<key>scope</key>
<string>keyword.operator.comparison, keyword.operator.assignment, keyword.operator.arithmetic</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#839496</string>
</dict>
</dict>
Add following lines to light scheme:
<dict>
<key>name</key>
<string>Arithmetical, Assignment, Comparision Operators</string>
<key>scope</key>
<string>keyword.operator.comparison, keyword.operator.assignment, keyword.operator.arithmetic</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#657B83</string>
</dict>
</dict>
Metadata
Metadata
Assignees
Labels
No labels