| `gitlens.views.repositories.avatars` | Specifies whether to show avatar images instead of commit (or status) icons in the _Repositories_ view |
| `gitlens.views.repositories.autoRefresh` | Specifies whether to automatically refresh the _Repositories_ view when the repository or the file system changes |
| `gitlens.views.repositories.autoReveal` | Specifies whether to automatically reveal repositories in the _Repositories_ view when opening files |
| `gitlens.views.repositories.branches.layout` | Specifies how the _Repositories_ view will display branches<br/><br/>`list` - displays branches as a list<br/>`tree` - displays branches as a tree when branch names contain slashes `/` |
@ -790,6 +791,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
| `gitlens.views.search.avatars` | Specifies whether to show avatar images instead of commit (or status) icons in the _Search Commits_ view |
| `gitlens.views.search.files.compact` | Specifies whether to compact (flatten) unnecessary file nesting in the _Search Commits_ view<br/>Only applies when `gitlens.views.compare.files.layout` is set to `tree` or `auto` |
| `gitlens.views.search.enabled` | Specifies whether to show the _Search Commits_ view |
| `gitlens.views.search.files.layout` | Specifies how the _Search Commits_ view will display files<br/>`auto` - automatically switches between displaying files as a `tree` or `list` based on the `gitlens.views.compare.files.threshold` value and the number of files at each nesting level<br/>`list` - displays files as a list<br/>`tree` - displays files as a tree |
@ -802,6 +804,7 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
| `gitlens.views.compare.avatars` | Specifies whether to show avatar images instead of commit (or status) icons in the _Compare_ view |
| `gitlens.views.compare.files.compact` | Specifies whether to compact (flatten) unnecessary file nesting in the _Compare_ view. Only applies when `gitlens.views.compare.files.layout` is set to `tree` or `auto` |
| `gitlens.views.compare.enabled` | Specifies whether to show the _Compare_ view |
| `gitlens.views.compare.files.layout` | Specifies how the _Compare_ view will display files<br/><br/>`auto` - automatically switches between displaying files as a `tree` or `list` based on the `gitlens.views.compare.files.threshold` value and the number of files at each nesting level<br/>`list` - displays files as a list<br/>`tree` - displays files as a tree |
@ -812,7 +815,6 @@ See also [View Settings](#view-settings- 'Jump to the View settings')
| `gitlens.views.avatars` | Specifies whether to show avatar images instead of commit (or status) icons in the views |
| `gitlens.views.commitFileFormat` | Specifies the format of a committed file in the views<br/><br/>Available tokens<br/>`${directory}` — directory name<br/>`${file}` — file name<br/>`${filePath}` — formatted file name and path<br/>`${path}` — full file path |
| `gitlens.views.commitFileDescriptionFormat` | Specifies the description format of a committed file in the views<br/><br/>Available tokens<br/>`${directory}` — directory name<br/>`${file}` — file name<br/>`${filePath}` — formatted file name and path<br/>`${path}` — full file path |
| `gitlens.views.commitFormat` | Specifies the format of committed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting<br/><br/>Available tokens<br/>`${id}`— commit id<br/>`${author}` — commit author<br/>`${message}`— commit message<br/>`${ago}` — relative commit date (e.g. 1 day ago)<br/>`${date}`— formatted commit date (format specified by`gitlens.statusBar.dateFormat`)<br/>`${agoOrDate}` — commit date specified by `gitlens.defaultDateStyle`<br/>`${authorAgo}`— commit author, relative commit date<br/>`${authorAgoOrDate}` — commit author, commit date specified by `gitlens.defaultDateStyle` |
"markdownDescription":"Specifies the string to be shown in place of the _authors_ code lens when there are unsaved changes",
"scope":"window"
},
"gitlens.views.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the views",
"scope":"window"
},
"gitlens.views.commitFileFormat":{
"type":"string",
"default":"${file}",
@ -1229,6 +1223,12 @@
"markdownDescription":"Specifies the description format of committed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
"scope":"window"
},
"gitlens.views.compare.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the _Compare_ view",
"scope":"window"
},
"gitlens.views.compare.enabled":{
"type":"boolean",
"default":true,
@ -1353,6 +1353,12 @@
"markdownDescription":"Specifies whether to automatically reveal repositories in the _Repositories_ view when opening files",
"scope":"window"
},
"gitlens.views.repositories.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the _Repositories_ view",
"scope":"window"
},
"gitlens.views.repositories.branches.layout":{
"type":"string",
"default":"tree",
@ -1435,6 +1441,12 @@
"markdownDescription":"Specifies whether to show the tracking branch when displaying local branches in the _Repositories_ view",
"scope":"window"
},
"gitlens.views.search.avatars":{
"type":"boolean",
"default":true,
"markdownDescription":"Specifies whether to show avatar images instead of commit (or status) icons in the _Search Commits_ view",