From a41bd6a255ffa4ade19defd757efd0f80708fa92 Mon Sep 17 00:00:00 2001 From: Peter Cardenas <16930781+PeterCardenas@users.noreply.github.com> Date: Mon, 8 Dec 2025 04:48:16 -0800 Subject: [PATCH] feat: add keys for command log menu items --- pkg/gui/extras_panel.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/gui/extras_panel.go b/pkg/gui/extras_panel.go index 0c3f20cd5..5efd1eb51 100644 --- a/pkg/gui/extras_panel.go +++ b/pkg/gui/extras_panel.go @@ -14,6 +14,7 @@ func (gui *Gui) handleCreateExtrasMenuPanel() error { Items: []*types.MenuItem{ { Label: gui.c.Tr.ToggleShowCommandLog, + Key: 't', OnPress: func() error { currentContext := gui.c.Context().CurrentStatic() if gui.c.State().GetShowExtrasWindow() && currentContext.GetKey() == context.COMMAND_LOG_CONTEXT_KEY { @@ -28,6 +29,7 @@ func (gui *Gui) handleCreateExtrasMenuPanel() error { }, { Label: gui.c.Tr.FocusCommandLog, + Key: 'f', OnPress: gui.handleFocusCommandLog, }, },