From 91e8765d9ca04aa88377f07d8abe665fb8fc66fe Mon Sep 17 00:00:00 2001 From: Sam Burville Date: Fri, 15 Oct 2021 21:00:24 +0100 Subject: Add JumpToBlock keybinding This should allow users to decide their own keybinding for jumping between blocks/panels. E.g. A user could choose 5-9 instead of 1-5. --- pkg/gui/keybindings.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pkg/gui/keybindings.go') diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 844a1dc8a..1678ee03c 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -1819,7 +1819,11 @@ func (gui *Gui) GetInitialKeybindings() []*Binding { // Appends keybindings to jump to a particular sideView using numbers for i, window := range []string{"status", "files", "branches", "commits", "stash"} { - bindings = append(bindings, &Binding{ViewName: "", Key: rune(i+1) + '0', Modifier: gocui.ModNone, Handler: gui.goToSideWindow(window)}) + bindings = append(bindings, &Binding{ + ViewName: "", + Key: gui.getKey(config.Universal.JumpToBlock[i]), + Modifier: gocui.ModNone, + Handler: gui.goToSideWindow(window)}) } for viewName := range gui.State.Contexts.initialViewTabContextMap() { -- cgit v1.2.3