"markdownDescription":"Specifies whether to show avatar images instead of status icons in the _File History_ view",
"scope":"window"
},
"gitlens.views.fileHistory.files.compact":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to compact (flatten) unnecessary file nesting in the _File History_ view. Only applies to folder history and when `#gitlens.views.fileHistory.files.layout#` is set to `tree` or `auto`",
"scope":"window"
},
"gitlens.views.fileHistory.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.fileHistory.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 _File History_ view will display files when showing the history of a folder",
"scope":"window"
},
"gitlens.views.fileHistory.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 _File History_ view. Only applies to folder history and when `#gitlens.views.fileHistory.files.layout#` is set to `auto`",