m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 07:13:48 -05:00

Rename: '--color hidden' to '--color nomatch'

This commit is contained in:
Junegunn Choi
2025-10-03 17:28:24 +09:00
parent 91e119a77e
commit 0df7d10550
6 changed files with 44 additions and 23 deletions

View File

@@ -3714,7 +3714,7 @@ func (t *Terminal) printHighlighted(result Result, colBase tui.ColorPair, colMat
if maxWidth > 0 {
color := colBase
if hidden {
color = color.WithFg(t.theme.Hidden)
color = color.WithFg(t.theme.Nomatch)
}
t.printColoredString(t.window, line, offsets, color)
}