Fix invalid default of selected-hl (--color)

It should default to 'hl' instead of 'current-hl'
This commit is contained in:
Junegunn Choi 2024-06-02 18:08:24 +09:00
parent 1afe13b5b5
commit c29533994f
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -823,7 +823,7 @@ func initTheme(theme *ColorTheme, baseTheme *ColorTheme, forceBlack bool) {
// These colors are not defined in the base themes
theme.SelectedFg = o(theme.Fg, theme.SelectedFg)
theme.SelectedBg = o(theme.Bg, theme.SelectedBg)
theme.SelectedMatch = o(theme.CurrentMatch, theme.SelectedMatch)
theme.SelectedMatch = o(theme.Match, theme.SelectedMatch)
theme.Disabled = o(theme.Input, theme.Disabled)
theme.Gutter = o(theme.DarkBg, theme.Gutter)
theme.PreviewFg = o(theme.Fg, theme.PreviewFg)