summaryrefslogtreecommitdiff
path: root/internal/tui/common
diff options
context:
space:
mode:
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")),
+ },
}
}