From 936bfdd0762914bd8d4802b5c181da79538f88c3 Mon Sep 17 00:00:00 2001 From: Jeffrey Hardy Date: Fri, 4 Sep 2026 11:24:16 -0400 Subject: [PATCH] Name x, not v, as the peek key in the cover picker The picker's footer told the reader to press v to look under the cover, but v moves a thread; x lifts the cover, as the divider hint and help bar already say. Following the picker's advice opened the move dialog instead. --- internal/tui/cover_picker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/cover_picker.go b/internal/tui/cover_picker.go index 93563d05..fe30369d 100644 --- a/internal/tui/cover_picker.go +++ b/internal/tui/cover_picker.go @@ -95,7 +95,7 @@ func (p *coverPicker) view(styles styles, width int) string { b.WriteString(preview + "\n\n") } b.WriteString(strings.Join(wrapText( - "A cover hides the threads you have already read. Press v to look under it.", + "A cover hides the threads you have already read. Press x to look under it.", contentWidth), "\n")) return b.String() }