mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
CustomCommand.Key and CustomCommandMenuOption.Key are user-configured keybindings just like the built-in ones. Converting them to the Keybinding type lets a user assign multiple keys to the same custom command, e.g. `key: [a, b]`, the same way they would for any other keybinding. The validator iterates over the elements rather than checking a single string, the binding registration goes through GetValidatedKeyBindingKeys to register every alternate, and the existing error messages use .String() so a multi-key binding renders sensibly. CustomCommandPrompt.Key (a form field name, not a keybinding) stays a plain string.
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package custom_commands
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var CustomCommandsSubmenu = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Using custom commands from a custom commands menu",
|
|
ExtraCmdArgs: []string{},
|
|
Skip: false,
|
|
SetupRepo: func(shell *Shell) {},
|
|
SetupConfig: func(cfg *config.AppConfig) {
|
|
cfg.GetUserConfig().CustomCommands = []config.CustomCommand{
|
|
{
|
|
Key: config.Keybinding{"x"},
|
|
Description: "My Custom Commands",
|
|
CommandMenu: []config.CustomCommand{
|
|
{
|
|
Key: config.Keybinding{"1"},
|
|
Context: "global",
|
|
Command: "touch myfile-global",
|
|
},
|
|
{
|
|
Key: config.Keybinding{"2"},
|
|
Context: "files",
|
|
Command: "touch myfile-files",
|
|
},
|
|
{
|
|
Key: config.Keybinding{"3"},
|
|
Context: "commits",
|
|
Command: "touch myfile-commits",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
|
t.Views().Files().
|
|
Focus().
|
|
IsEmpty().
|
|
Press(config.Keybinding{"x"}).
|
|
Tap(func() {
|
|
t.ExpectPopup().Menu().
|
|
Title(Equals("My Custom Commands")).
|
|
Lines(
|
|
Contains("1 touch myfile-global"),
|
|
Contains("2 touch myfile-files"),
|
|
).
|
|
Select(Contains("touch myfile-files")).Confirm()
|
|
}).
|
|
Lines(
|
|
Contains("myfile-files"),
|
|
)
|
|
|
|
t.Views().Commits().
|
|
Focus().
|
|
Press(config.Keybinding{"x"}).
|
|
Tap(func() {
|
|
t.ExpectPopup().Menu().
|
|
Title(Equals("My Custom Commands")).
|
|
Lines(
|
|
Contains("1 touch myfile-global"),
|
|
Contains("3 touch myfile-commits"),
|
|
)
|
|
t.GlobalPress(config.Keybinding{"3"})
|
|
})
|
|
|
|
t.Views().Files().
|
|
Lines(
|
|
Equals("▼ /"),
|
|
Contains("myfile-commits"),
|
|
Contains("myfile-files"),
|
|
)
|
|
},
|
|
})
|