Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@
"details": "Gutter foreground color",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "gutter_foreground_highlight",
"details": "Gutter foreground highlighted color",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "highlight",
"details": "Border color of inactive search results",
Expand Down Expand Up @@ -161,6 +166,16 @@
"details": "Ruler color",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "scroll_highlight",
"details": "Search results color on scroll bar",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "scroll_selected_highlight",
"details": "Search results color of selected on scroll bar",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "selection",
"details": "Selection color",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@
"contents": "\"gutter_foreground\": \"$1\",",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "gutter_foreground_highlight",
"details": "Gutter foreground highlighted color",
"contents": "\"gutter_foreground_highlight\": \"$1\",",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "highlight",
"details": "Border color of inactive search results",
Expand Down Expand Up @@ -217,6 +223,18 @@
"contents": "\"rulers\": \"$1\",",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "scroll_highlight",
"details": "Search results color on scroll bar",
"contents": "\"scroll_highlight\": \"$1\",",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "scroll_selected_highlight",
"details": "Search results color of selected on scroll bar",
"contents": "\"scroll_selected_highlight\": \"$1\",",
"kind": ["keyword", "k", "globals"],
},
{
"trigger": "selection",
"details": "Selection color",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ contexts:
|stack_guide|active_guide|guide
|misspelling
|brackets_foreground|bracket_contents_foreground|tags_foreground
|minimap_border|gutter|gutter_foreground|rulers|fold_marker
|minimap_border|gutter(?:_(?:foreground|foreground_highlight))?|rulers|fold_marker
|scroll_(?:highlight|selected_highlight)
|line_diff_(?:modified|added|deleted) # added in 3186 & 3189
|block_caret(?:_(?:border|underline))? # block_caret added in 3190, others in 4086.
)(")
Expand Down