❯ clipse -v
clipse v1.2.1
I'm using the following theme:
{
"useCustom": true,
"TitleFore": "#cdd6f4",
"TitleBack": "#1e1e20",
"TitleInfo": "#cdd6f4",
"NormalTitle": "#cdd6f4",
"DimmedTitle": "#6c7086",
"SelectedTitle": "#a6e3a1",
"NormalDesc": "#a6adc8",
"DimmedDesc": "#6c7086",
"SelectedDesc": "#a6e3a1",
"StatusMsg": "#b4befe",
"PinIndicatorColor": "#f38ba8",
"SelectedBorder": "#a6e3a1",
"SelectedDescBorder": "#a6e3a1",
"FilteredMatch": "#f38ba8",
"FilterPrompt": "#f5c2e7",
"FilterInfo": "#cdd6f4",
"FilterText": "#f5e0dc",
"FilterCursor": "#fab387",
"HelpKey": "#a6e3a1",
"HelpDesc": "#cdd6f4",
"PageActiveDot": "#a6e3a1",
"PageInactiveDot": "#a6adc8",
"DividerDot": "#f38ba8",
"PreviewedText": "#cdd6f4",
"PreviewBorder": "#a6e3a1"
}
All keys work fine, except FilteredMatch. If I press / and start typing some characters, the matching results are using #a6e3a1, not #f38ba8:
In app/styles.go, there are references to:
FilterPrompt
FilterText
FilterInfo
FilterCursor
but FilteredMatch is missing. Maybe that's why?
I'm using the following theme:
{ "useCustom": true, "TitleFore": "#cdd6f4", "TitleBack": "#1e1e20", "TitleInfo": "#cdd6f4", "NormalTitle": "#cdd6f4", "DimmedTitle": "#6c7086", "SelectedTitle": "#a6e3a1", "NormalDesc": "#a6adc8", "DimmedDesc": "#6c7086", "SelectedDesc": "#a6e3a1", "StatusMsg": "#b4befe", "PinIndicatorColor": "#f38ba8", "SelectedBorder": "#a6e3a1", "SelectedDescBorder": "#a6e3a1", "FilteredMatch": "#f38ba8", "FilterPrompt": "#f5c2e7", "FilterInfo": "#cdd6f4", "FilterText": "#f5e0dc", "FilterCursor": "#fab387", "HelpKey": "#a6e3a1", "HelpDesc": "#cdd6f4", "PageActiveDot": "#a6e3a1", "PageInactiveDot": "#a6adc8", "DividerDot": "#f38ba8", "PreviewedText": "#cdd6f4", "PreviewBorder": "#a6e3a1" }All keys work fine, except
FilteredMatch. If I press/and start typing some characters, the matching results are using#a6e3a1, not#f38ba8:In app/styles.go, there are references to:
FilterPromptFilterTextFilterInfoFilterCursorbut
FilteredMatchis missing. Maybe that's why?