Skip to content

Commit

Permalink
fix(table): correct keybinding for page down (#220)
Browse files Browse the repository at this point in the history
Co-authored-by: Bastian Winkler <buz@serious.im>
  • Loading branch information
buztard and buztard committed Aug 21, 2022
1 parent 1c26128 commit 776062e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions table/table.go
Expand Up @@ -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"),
Expand Down

0 comments on commit 776062e

Please sign in to comment.