diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 24fe83d8..a6e57abd 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -65,6 +65,12 @@ func (gui *Gui) GetInitialKeybindings() []*Binding { Modifier: gocui.ModNone, Handler: gui.quit, }, + { + ViewName: "", + Key: gocui.KeyF10, + Modifier: gocui.ModNone, + Handler: gui.quit, + }, { ViewName: "", Key: gocui.KeyCtrlC, @@ -407,13 +413,6 @@ func (gui *Gui) GetInitialKeybindings() []*Binding { Handler: gui.handleVolumesBulkCommand, Description: gui.Tr.ViewBulkCommands, }, - { - ViewName: "volumes", - Key: 'c', - Modifier: gocui.ModNone, - Handler: gui.handleVolumesCustomCommand, - Description: gui.Tr.RunCustomCommand, - }, { ViewName: "main", Key: gocui.KeyEsc,