sublimetext - Sublime Text: Change highlight background -
i change color on found instances (when use find) of word have been found. noticed highlightbackground key changes first instance. there way change highlight color of found instances?
the following examples neon color scheme
(full disclosure - i'm designer):
so i'm searching though package control.sublime-settings
file trying find of packages html
(case-insensitive) in name. open find dialog (ctrlf on windows/linux, ⌘f on os x) , type html
search box, after unchecking regex, case-sensitive, , whole-word options. following appears:
the yellow background behind first found item on line 22 themed using findhighlight
setting, while blue font (foreground) themed using findhighlightforeground
. can hit f3 (win/lin, ⌘g on os x) scroll through each match.
however, want multi-selection can change them @ once. hit find (altenter, ⌥enter on os x) , window looks so:
this same coloring used when manually select text. bright blue background themed using selection
setting, while bright green border around themed using selectionborder
. text color (foreground) same defined elsewhere in color scheme particular scope. defining selectionforeground
doesn't seem have effect.
the full settings
dict neon looks this:
<dict> <key>settings</key> <dict> <key>activeguide</key> <string>#ff0080</string> <key>background</key> <string>#000000</string> <key>caret</key> <string>#ffffff</string> <key>findhighlight</key> <string>#f2ff06</string> <key>findhighlightforeground</key> <string>#1515ff</string> <key>foreground</key> <string>#ffffff</string> <key>guide</key> <string>#6f6f6f</string> <key>inactiveselection</key> <string>#353576</string> <!-- invisibles doesn't seem work me --> <key>invisibles</key> <string>#06ff05</string> <key>linehighlight</key> <string>#2d2d2d</string> <key>selection</key> <string>#0205ff</string> <key>selectionborder</key> <string>#06ff05</string> <key>stackguide</key> <string>#06ff05</string> </dict> </dict>
i hope helps!
Comments
Post a Comment