From 5df0475612464e9f030808cad926c44935f2c685 Mon Sep 17 00:00:00 2001 From: Sam Burville Date: Mon, 18 Oct 2021 10:06:03 +0100 Subject: Add variable to simplify JumpToBlock keybinding This removes the magic '5' and instead uses the number of windows. --- pkg/gui/keybindings.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pkg/gui') diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 76a33a33a..d441c496c 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -1818,10 +1818,12 @@ func (gui *Gui) GetInitialKeybindings() []*Binding { } // Appends keybindings to jump to a particular sideView using numbers - if len(config.Universal.JumpToBlock) != 5 { + windows := []string{"status", "files", "branches", "commits", "stash"} + + if len(config.Universal.JumpToBlock) != len(windows) { log.Fatal("Jump to block keybindings cannot be set. Exactly 5 keybindings must be supplied.") } else { - for i, window := range []string{"status", "files", "branches", "commits", "stash"} { + for i, window := range windows { bindings = append(bindings, &Binding{ ViewName: "", Key: gui.getKey(config.Universal.JumpToBlock[i]), -- cgit v1.2.3