From 9e4780510e07a239e696c3245cd19f8754f707f2 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 7 May 2024 01:26:25 +0900 Subject: [PATCH] Add current-{fg,bg,hl} as synonyms for {fg,bg,hl}+ --- man/man1/fzf.1 | 6 +++--- src/options.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 323d3ea..dd2608f 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -468,10 +468,10 @@ color mappings. \fBbg \fRBackground \fBpreview-bg \fRPreview window background \fBhl \fRHighlighted substrings - \fBfg+ \fRText (current line) - \fBbg+ \fRBackground (current line) + \fBcurrent-fg (fg+) \fRText (current line) + \fBcurrent-bg (bg+) \fRBackground (current line) \fBgutter \fRGutter on the left - \fBhl+ \fRHighlighted substrings (current line) + \fBcurrent-hl (hl+) \fRHighlighted substrings (current line) \fBquery \fRQuery string \fBdisabled \fRQuery string when search is disabled (\fB--disabled\fR) \fBinfo \fRInfo line (match counters) diff --git a/src/options.go b/src/options.go index 9abecc3..d7f2b47 100644 --- a/src/options.go +++ b/src/options.go @@ -980,15 +980,15 @@ func parseTheme(defaultTheme *tui.ColorTheme, str string) (*tui.ColorTheme, erro mergeAttr(&theme.PreviewFg) case "preview-bg": mergeAttr(&theme.PreviewBg) - case "fg+": + case "current-fg", "fg+": mergeAttr(&theme.Current) - case "bg+": + case "current-bg", "bg+": mergeAttr(&theme.DarkBg) case "gutter": mergeAttr(&theme.Gutter) case "hl": mergeAttr(&theme.Match) - case "hl+": + case "current-hl", "hl+": mergeAttr(&theme.CurrentMatch) case "border": mergeAttr(&theme.Border)