summaryrefslogtreecommitdiff
path: root/internal/ui/table_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-28 10:42:06 +0300
committerPaul Buetow <paul@buetow.org>2025-06-28 10:42:06 +0300
commitea0fbdc5a168b22296588259c6e821dffcdf7d1a (patch)
tree1b535a803e8d25ccd0536ab86db4602a28c9710e /internal/ui/table_test.go
parent0e065b3b0f5e935fc769be2f1e84779fa9897e99 (diff)
feat: add search functionality to help mode and improve help display
- Add search capability (/) within help dialog - Implement n/N navigation for search results - Add regex pattern matching for help text - Improve help text formatting and scrolling - Update README to simplify hotkey documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'internal/ui/table_test.go')
-rw-r--r--internal/ui/table_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/table_test.go b/internal/ui/table_test.go
index 8066a2c..4e52842 100644
--- a/internal/ui/table_test.go
+++ b/internal/ui/table_test.go
@@ -319,7 +319,7 @@ func TestDueDateHotkey(t *testing.T) {
t.Fatalf("New: %v", err)
}
- mv, _ := (&m).Update(tea.KeyMsg{Type: tea.KeyRunes, Runes: []rune{'D'}})
+ mv, _ := (&m).Update(tea.KeyMsg{Type: tea.KeyRunes, Runes: []rune{'w'}})
m = *mv.(*Model)
for i := 0; i < 3; i++ {
mp := &m; mv, _ = mp.Update(tea.KeyMsg{Type: tea.KeyRight})