From b027a5a8277bc9ad15ab50d1bccf8f188225e8ab Mon Sep 17 00:00:00 2001 From: Konstantinos Bairaktaris Date: Wed, 19 Oct 2022 09:06:59 +0300 Subject: [PATCH] Add 'E' keybinding (exec shell) to services panel --- pkg/gui/keybindings.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 3f8ac500..f2f70a67 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -268,6 +268,13 @@ func (gui *Gui) GetInitialKeybindings() []*Binding { Handler: gui.handleContainersExecShell, Description: gui.Tr.ExecShell, }, + { + ViewName: "services", + Key: 'E', + Modifier: gocui.ModNone, + Handler: gui.handleContainersExecShell, + Description: gui.Tr.ExecShell, + }, { ViewName: "containers", Key: 'c',