From 0df7d105506f3533d45afd6644991e49f3c78c5d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 3 Oct 2025 17:28:24 +0900 Subject: Rename: '--color hidden' to '--color nomatch' --- src/result.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/result.go') diff --git a/src/result.go b/src/result.go index d6811dc8..4ba4bd2c 100644 --- a/src/result.go +++ b/src/result.go @@ -256,7 +256,7 @@ func (result *Result) colorOffsets(matchOffsets []Offset, nthOffsets []Offset, t base = base.WithAttr(attrNth) } if hidden { - base = base.WithFg(theme.Hidden) + base = base.WithFg(theme.Nomatch) } color := ansiToColorPair(ansi, base) colors = append(colors, colorOffset{ @@ -267,7 +267,7 @@ func (result *Result) colorOffsets(matchOffsets []Offset, nthOffsets []Offset, t } else { color := colBase.WithAttr(attrNth) if hidden { - color = color.WithFg(theme.Hidden) + color = color.WithFg(theme.Nomatch) } colors = append(colors, colorOffset{ offset: [2]int32{int32(start), int32(idx)}, -- cgit v1.2.3