From 60cee4a9a1c84ff3ea11d910b9520ca5849888c1 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 28 Jul 2020 16:46:23 -0400 Subject: [PATCH] u/d also pages back/forth in the the file listing --- ui/stash.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/stash.go b/ui/stash.go index 3d6026b..4d20d8d 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -384,9 +384,9 @@ func stashUpdate(msg tea.Msg, m stashModel) (stashModel, tea.Cmd) { if key, ok := msg.(tea.KeyMsg); ok { if key.Type == tea.KeyRune { switch key.Rune { - case 'b': + case 'b', 'u': m.paginator.PrevPage() - case 'f': + case 'f', 'd': m.paginator.NextPage() } }