summaryrefslogtreecommitdiff
path: root/internal/tui/common
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-24 10:35:13 +0200
committerPaul Buetow <paul@buetow.org>2026-02-24 10:35:13 +0200
commita403ca152b6268eacf2804c2d857ead16af37ef3 (patch)
tree6df1ebaa0e2a68f2dfc6c17b9987ae8fbff3129c /internal/tui/common
parent791c7aa9e573e80e90ba37e07c8791f280e74d9a (diff)
tui: address review feedback for dashboard and export
Diffstat (limited to 'internal/tui/common')
-rw-r--r--internal/tui/common/keys.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/tui/common/keys.go b/internal/tui/common/keys.go
index 0dae542..a7ded71 100644
--- a/internal/tui/common/keys.go
+++ b/internal/tui/common/keys.go
@@ -52,7 +52,11 @@ func (k KeyMap) DashboardShortHelp() []key.Binding {
func (k KeyMap) DashboardFullHelp() [][]key.Binding {
return [][]key.Binding{
{k.One, k.Two, k.Three, k.Four, k.Five, k.Six},
- {k.Tab, k.ShiftTab, k.Export, k.Help, k.Quit},
+ {k.Tab, k.ShiftTab, k.Export, k.Refresh, k.Help, k.Quit},
+ {
+ key.NewBinding(key.WithKeys("j/k"), key.WithHelp("j/k", "scroll")),
+ key.NewBinding(key.WithKeys("up/down"), key.WithHelp("up/down", "scroll")),
+ },
}
}