1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-09-16 09:16:26 +02:00

Don't hide keybindings that match the confirmMenu key in the keybindings menu

In all other menus besides the keybindings menu it makes sense to hide
keybindings that match the confirmMenu binding. This is important to make it
clear which action will be triggered when you press the key.

In the keybindings menu this is different; the main purpose of that menu is not
to allow triggering commands by their key while the menu is open, but to serve
as a reference for what the keybindings are when it is not open. Because of
this, it is more important to show all bindings in this menu, even if they
conflict with the confirmMenu key.

This fixes a regression introduced in b3a3410a1a.
This commit is contained in:
Stefan Haller
2025-09-07 12:42:51 +02:00
parent 0d5a410114
commit 26096d9dd9
3 changed files with 3 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ func (self *OptionsMenuAction) Call() error {
HideCancel: true,
ColumnAlignment: []utils.Alignment{utils.AlignRight, utils.AlignLeft},
AllowFilteringKeybindings: true,
KeepConfirmKeybindings: true,
})
}

View File

@@ -35,7 +35,7 @@ func (gui *Gui) createMenu(opts types.CreateMenuOptions) error {
maxColumnSize = max(maxColumnSize, len(item.LabelColumns))
// Remove all item keybindings that are the same as the confirm binding
if item.Key == confirmKey {
if item.Key == confirmKey && !opts.KeepConfirmKeybindings {
item.Key = nil
}
}

View File

@@ -156,6 +156,7 @@ type CreateMenuOptions struct {
HideCancel bool
ColumnAlignment []utils.Alignment
AllowFilteringKeybindings bool
KeepConfirmKeybindings bool // if true, the keybindings that match the confirm binding will not be removed from menu items
}
type CreatePopupPanelOpts struct {