Add 'E' keybinding (exec shell) to services panel

This commit is contained in:
Konstantinos Bairaktaris 2022-10-19 09:06:59 +03:00
parent 2134025de4
commit b027a5a827
No known key found for this signature in database
GPG key ID: D051365FF68E4255

View file

@ -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',