From b53da415ee2347d9f6b10c2e1c3256f0a9ccca67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20B=C3=BCtow?= <1224732+snonux@users.noreply.github.com> Date: Sat, 21 Jun 2025 16:42:01 +0300 Subject: highlight entire row --- internal/atable/table.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/atable/table.go b/internal/atable/table.go index 7251b11..03e946f 100644 --- a/internal/atable/table.go +++ b/internal/atable/table.go @@ -482,6 +482,12 @@ func (m *Model) renderRow(r int) string { continue } style := m.styles.Cell + if r == m.cursor { + style = style. + Background(lipgloss.Color("57")). + Foreground(lipgloss.Color("0")). + Bold(false) + } if r == m.cursor && i == m.colCursor { style = m.styles.Selected } -- cgit v1.2.3