From 776062e30c69633d43bfd09ea525798bdf235989 Mon Sep 17 00:00:00 2001 From: buz <852136+buztard@users.noreply.github.com> Date: Sun, 21 Aug 2022 15:56:58 +0200 Subject: [PATCH] fix(table): correct keybinding for page down (#220) Co-authored-by: Bastian Winkler --- table/table.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/table/table.go b/table/table.go index e50a11d..1614066 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"),