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]),