mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 20:36:03 +02:00
Fix openDirInEditor docs to mention parameter
This commit is contained in:
parent
9ad88542bc
commit
a42b16438e
4 changed files with 4 additions and 4 deletions
|
@ -425,7 +425,7 @@ os:
|
||||||
# Whether lazygit suspends until an edit process returns
|
# Whether lazygit suspends until an edit process returns
|
||||||
editInTerminal: false
|
editInTerminal: false
|
||||||
|
|
||||||
# For opening a directory in an editor
|
# For opening a directory in an editor. Should contain "{{dir}}".
|
||||||
openDirInEditor: ""
|
openDirInEditor: ""
|
||||||
|
|
||||||
# A built-in preset that sets all of the above settings. Supported presets
|
# A built-in preset that sets all of the above settings. Supported presets
|
||||||
|
|
|
@ -555,7 +555,7 @@ os:
|
||||||
# Whether lazygit suspends until an edit process returns
|
# Whether lazygit suspends until an edit process returns
|
||||||
editInTerminal: false
|
editInTerminal: false
|
||||||
|
|
||||||
# For opening a directory in an editor
|
# For opening a directory in an editor. Should contain "{{dir}}".
|
||||||
openDirInEditor: ""
|
openDirInEditor: ""
|
||||||
|
|
||||||
# A built-in preset that sets all of the above settings. Supported presets
|
# A built-in preset that sets all of the above settings. Supported presets
|
||||||
|
|
|
@ -570,7 +570,7 @@ type OSConfig struct {
|
||||||
// [dev] We're naming this `editInTerminal` for backwards compatibility
|
// [dev] We're naming this `editInTerminal` for backwards compatibility
|
||||||
SuspendOnEdit *bool `yaml:"editInTerminal,omitempty"`
|
SuspendOnEdit *bool `yaml:"editInTerminal,omitempty"`
|
||||||
|
|
||||||
// For opening a directory in an editor
|
// For opening a directory in an editor. Should contain "{{dir}}".
|
||||||
OpenDirInEditor string `yaml:"openDirInEditor,omitempty"`
|
OpenDirInEditor string `yaml:"openDirInEditor,omitempty"`
|
||||||
|
|
||||||
// A built-in preset that sets all of the above settings. Supported presets
|
// A built-in preset that sets all of the above settings. Supported presets
|
||||||
|
|
|
@ -1543,7 +1543,7 @@
|
||||||
},
|
},
|
||||||
"openDirInEditor": {
|
"openDirInEditor": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "For opening a directory in an editor"
|
"description": "For opening a directory in an editor. Should contain \"{{dir}}\"."
|
||||||
},
|
},
|
||||||
"editPreset": {
|
"editPreset": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue