From 236006753a21cc3c25a9e6efe12efe31c69a5b4c Mon Sep 17 00:00:00 2001 From: Renz Date: Fri, 7 Nov 2025 12:41:34 +0000 Subject: [PATCH] Simplify history selection: remove styled background, use plain arrow marker --- internal/tui/history.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/internal/tui/history.go b/internal/tui/history.go index e9982f3..7b9fc94 100644 --- a/internal/tui/history.go +++ b/internal/tui/history.go @@ -214,12 +214,10 @@ func (m HistoryViewModel) View() string { entry.Status) if m.cursor == i { - // Highlighted selection - render without background extending to full width - s.WriteString("→ ") - s.WriteString(selectedStyle.Render(line)) - s.WriteString("\n") + // Simple selection marker without styled background + s.WriteString(fmt.Sprintf("→ %s\n", line)) } else { - s.WriteString(" " + line + "\n") + s.WriteString(fmt.Sprintf(" %s\n", line)) } }