summaryrefslogtreecommitdiffstats
path: root/pkg/gui
diff options
context:
space:
mode:
authorMukhlis Akbarrudin <mukhlis3389@gmail.com>2022-04-14 05:05:33 +0700
committerJesse Duffield <jessedduffield@gmail.com>2022-04-15 08:23:27 +1000
commit21336d3aa24d01449a70003d30a6c4360e9b4995 (patch)
tree30792fe4868057da4e9c9fd263da620b0d494a86 /pkg/gui
parentaf5f4af6c04527d089b1de0a2402424d0fa43972 (diff)
refactor: explicitly add alternative keybinding
Diffstat (limited to 'pkg/gui')
-rw-r--r--pkg/gui/keybindings.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go
index 8598502ef..772aa7b6e 100644
--- a/pkg/gui/keybindings.go
+++ b/pkg/gui/keybindings.go
@@ -104,14 +104,14 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi
ViewName: "",
Key: opts.GetKey(opts.Config.Universal.ScrollUpMain),
Handler: self.scrollUpMain,
- Alternative: "fn+up",
+ Alternative: "fn+up/shift+k",
Description: self.c.Tr.LcScrollUpMainPanel,
},
{
ViewName: "",
Key: opts.GetKey(opts.Config.Universal.ScrollDownMain),
Handler: self.scrollDownMain,
- Alternative: "fn+down",
+ Alternative: "fn+down/shift+j",
Description: self.c.Tr.LcScrollDownMainPanel,
},
{