"markdownDescription":"Specifies the description format of committed changes in the views. See [_Commit Tokens_](https://github.com/eamodio/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs",
"scope":"window"
},
"gitlens.views.branches.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the _Branches_ view",
"scope":"window"
},
"gitlens.views.branches.branches.layout":{
"type":"string",
"default":"tree",
"enum":[
"list",
"tree"
],
"enumDescriptions":[
"Displays branches as a list",
"Displays branches as a tree when branch names contain slashes `/`"
],
"markdownDescription":"Specifies how the _Branches_ view will display branches",
"scope":"window"
},
"gitlens.views.branches.files.compact":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to compact (flatten) unnecessary file nesting in the _Branches_ view. Only applies when `#gitlens.views.repositories.files.layout#` is set to `tree` or `auto`",
"scope":"window"
},
"gitlens.views.branches.files.layout":{
"type":"string",
"default":"auto",
"enum":[
"auto",
"list",
"tree"
],
"enumDescriptions":[
"Automatically switches between displaying files as a `tree` or `list` based on the `#gitlens.views.branches.files.threshold#` value and the number of files at each nesting level",
"Displays files as a list",
"Displays files as a tree"
],
"markdownDescription":"Specifies how the _Branches_ view will display files",
"scope":"window"
},
"gitlens.views.branches.files.threshold":{
"type":"number",
"default":5,
"markdownDescription":"Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Branches_ view. Only applies when `#gitlens.views.branches.files.layout#` is set to `auto`",
"scope":"window"
},
"gitlens.views.branches.showTrackingBranch":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show the tracking branch when displaying local branches in the _Branches_ view",
"scope":"window"
},
"gitlens.views.compare.avatars":{
"type":"boolean",
"default":true,
@ -1598,6 +1652,46 @@
"markdownDescription":"Specifies where to show the _File History_ view",
"scope":"window"
},
"gitlens.views.history.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the _History_ view",
"scope":"window"
},
"gitlens.views.history.files.compact":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to compact (flatten) unnecessary file nesting in the _History_ view. Only applies when `#gitlens.views.repositories.files.layout#` is set to `tree` or `auto`",
"scope":"window"
},
"gitlens.views.history.files.layout":{
"type":"string",
"default":"auto",
"enum":[
"auto",
"list",
"tree"
],
"enumDescriptions":[
"Automatically switches between displaying files as a `tree` or `list` based on the `#gitlens.views.history.files.threshold#` value and the number of files at each nesting level",
"Displays files as a list",
"Displays files as a tree"
],
"markdownDescription":"Specifies how the _History_ view will display files",
"scope":"window"
},
"gitlens.views.history.files.threshold":{
"type":"number",
"default":5,
"markdownDescription":"Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _History_ view. Only applies when `#gitlens.views.history.files.layout#` is set to `auto`",
"scope":"window"
},
"gitlens.views.history.showTrackingBranch":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show the tracking branch when displaying local branches in the _History_ view",