From 9b1ce657dd22dae88ebe297368ba69ca9f4caf83 Mon Sep 17 00:00:00 2001 From: Bastian Winkler Date: Sun, 21 Aug 2022 10:58:15 +0200 Subject: [PATCH] fix(table): correct keybinding for page down --- table/table.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/table/table.go b/table/table.go index e50a11d7..16140666 100644 --- a/table/table.go +++ b/table/table.go @@ -59,11 +59,11 @@ func DefaultKeyMap() KeyMap { ), PageUp: key.NewBinding( key.WithKeys("b", "pgup"), - key.WithHelp("b", "page up"), + key.WithHelp("b/pgup", "page up"), ), PageDown: key.NewBinding( - key.WithKeys("f", "pgup", spacebar), - key.WithHelp("f", "page down"), + key.WithKeys("f", "pgdown", spacebar), + key.WithHelp("f/pgdn", "page down"), ), HalfPageUp: key.NewBinding( key.WithKeys("u", "ctrl+u"),