mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 12:25:47 +02:00
Don't set showOutput explicitly
It is false by default. This way there's one less change to make in the next commit.
This commit is contained in:
parent
7238e41251
commit
0df5e08828
2 changed files with 6 additions and 8 deletions
|
@ -15,10 +15,9 @@ var GlobalContext = NewIntegrationTest(NewIntegrationTestArgs{
|
|||
SetupConfig: func(cfg *config.AppConfig) {
|
||||
cfg.GetUserConfig().CustomCommands = []config.CustomCommand{
|
||||
{
|
||||
Key: "X",
|
||||
Context: "global",
|
||||
Command: "touch myfile",
|
||||
ShowOutput: false,
|
||||
Key: "X",
|
||||
Context: "global",
|
||||
Command: "touch myfile",
|
||||
},
|
||||
}
|
||||
},
|
||||
|
|
|
@ -15,10 +15,9 @@ var MultipleContexts = NewIntegrationTest(NewIntegrationTestArgs{
|
|||
SetupConfig: func(cfg *config.AppConfig) {
|
||||
cfg.GetUserConfig().CustomCommands = []config.CustomCommand{
|
||||
{
|
||||
Key: "X",
|
||||
Context: "commits, reflogCommits",
|
||||
Command: "touch myfile",
|
||||
ShowOutput: false,
|
||||
Key: "X",
|
||||
Context: "commits, reflogCommits",
|
||||
Command: "touch myfile",
|
||||
},
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue