mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
Fix description of showFileTree
Change '~' to '`' as it's the correct key. Signed-off-by: Adrian Gielniewski <adrian.gielniewski@gmail.com>
This commit is contained in:
parent
0d155e1478
commit
e3944c1707
3 changed files with 3 additions and 3 deletions
|
@ -166,7 +166,7 @@ gui:
|
||||||
showListFooter: true
|
showListFooter: true
|
||||||
|
|
||||||
# If true, display the files in the file views as a tree. If false, display the files as a flat list.
|
# If true, display the files in the file views as a tree. If false, display the files as a flat list.
|
||||||
# This can be toggled from within Lazygit with the '~' key, but that will not change the default.
|
# This can be toggled from within Lazygit with the '`' key, but that will not change the default.
|
||||||
showFileTree: true
|
showFileTree: true
|
||||||
|
|
||||||
# If true, show the number of lines changed per file in the Files view
|
# If true, show the number of lines changed per file in the Files view
|
||||||
|
|
|
@ -114,7 +114,7 @@ type GuiConfig struct {
|
||||||
// If true, show the '5 of 20' footer at the bottom of list views
|
// If true, show the '5 of 20' footer at the bottom of list views
|
||||||
ShowListFooter bool `yaml:"showListFooter"`
|
ShowListFooter bool `yaml:"showListFooter"`
|
||||||
// If true, display the files in the file views as a tree. If false, display the files as a flat list.
|
// If true, display the files in the file views as a tree. If false, display the files as a flat list.
|
||||||
// This can be toggled from within Lazygit with the '~' key, but that will not change the default.
|
// This can be toggled from within Lazygit with the '`' key, but that will not change the default.
|
||||||
ShowFileTree bool `yaml:"showFileTree"`
|
ShowFileTree bool `yaml:"showFileTree"`
|
||||||
// If true, show the number of lines changed per file in the Files view
|
// If true, show the number of lines changed per file in the Files view
|
||||||
ShowNumstatInFilesView bool `yaml:"showNumstatInFilesView"`
|
ShowNumstatInFilesView bool `yaml:"showNumstatInFilesView"`
|
||||||
|
|
|
@ -302,7 +302,7 @@
|
||||||
},
|
},
|
||||||
"showFileTree": {
|
"showFileTree": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "If true, display the files in the file views as a tree. If false, display the files as a flat list.\nThis can be toggled from within Lazygit with the '~' key, but that will not change the default.",
|
"description": "If true, display the files in the file views as a tree. If false, display the files as a flat list.\nThis can be toggled from within Lazygit with the '`' key, but that will not change the default.",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"showNumstatInFilesView": {
|
"showNumstatInFilesView": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue