From 89334f7bf5d7b85f0ddf3b10026c71373726e716 Mon Sep 17 00:00:00 2001 From: Michael McCarty Date: Sat, 21 Mar 2026 14:14:14 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8feat:=20add=20RenderScoreTableANSI=20t?= =?UTF-8?q?o=20highlight=20column=20maxes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/boost/estimate_scores.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/boost/estimate_scores.go b/src/boost/estimate_scores.go index 2e7eff53..52336874 100644 --- a/src/boost/estimate_scores.go +++ b/src/boost/estimate_scores.go @@ -707,6 +707,7 @@ type srPeaks struct { btv int } +// RenderScoreTableANSI renders the score table in an ANSI code block, highlighting the max value in each column. If includeDiff is true, includes the Diff column. func RenderScoreTableANSI(rows []srRow, srmode bool, includeDiff bool) string { peaks := computePeaks(rows)