Remove an outdated comment

Lazygit doesn't touch this, the comment is just not true.

I wonder if we need the config at all, actually; I'd be in favor of removing it.
This commit is contained in:
Stefan Haller 2024-05-31 20:05:24 +02:00
parent 7492521829
commit 91cb33db85
2 changed files with 1 additions and 2 deletions

View file

@ -22,7 +22,6 @@ type UserConfig struct {
// Config relating to things outside of Lazygit like how files are opened, copying to clipboard, etc // Config relating to things outside of Lazygit like how files are opened, copying to clipboard, etc
OS OSConfig `yaml:"os,omitempty"` OS OSConfig `yaml:"os,omitempty"`
// If true, don't display introductory popups upon opening Lazygit. // If true, don't display introductory popups upon opening Lazygit.
// Lazygit sets this to true upon first runninng the program so that you don't see introductory popups every time you open the program.
DisableStartupPopups bool `yaml:"disableStartupPopups"` DisableStartupPopups bool `yaml:"disableStartupPopups"`
// User-configured commands that can be invoked from within Lazygit // User-configured commands that can be invoked from within Lazygit
CustomCommands []CustomCommand `yaml:"customCommands" jsonschema:"uniqueItems=true"` CustomCommands []CustomCommand `yaml:"customCommands" jsonschema:"uniqueItems=true"`

View file

@ -752,7 +752,7 @@
}, },
"disableStartupPopups": { "disableStartupPopups": {
"type": "boolean", "type": "boolean",
"description": "If true, don't display introductory popups upon opening Lazygit.\nLazygit sets this to true upon first runninng the program so that you don't see introductory popups every time you open the program." "description": "If true, don't display introductory popups upon opening Lazygit."
}, },
"customCommands": { "customCommands": {
"items": { "items": {