Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"null"
],
"default": null,
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) for the inline blame annotation. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats",
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) for the inline blame annotation. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats. When not specified, the `#gitlens.defaultDateFormat#` value is used",
"scope": "window",
"order": 50
}
Expand Down Expand Up @@ -334,7 +334,7 @@
"null"
],
"default": null,
"markdownDescription": "Specifies how to format absolute dates in the Git CodeLens. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats",
"markdownDescription": "Specifies how to format absolute dates in the Git CodeLens. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats. When not specified, the `#gitlens.defaultDateFormat#` value is used",
"scope": "window",
"order": 73
},
Expand Down Expand Up @@ -451,7 +451,7 @@
"null"
],
"default": null,
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) in the blame information in the status bar. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats",
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) in the blame information in the status bar. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats. When not specified, the `#gitlens.defaultDateFormat#` value is used",
"scope": "window",
"order": 80
}
Expand Down Expand Up @@ -796,7 +796,7 @@
"null"
],
"default": null,
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) in file blame annotations. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats",
"markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) in file blame annotations. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats. When not specified, the `#gitlens.defaultDateFormat#` value is used",
"scope": "window",
"order": 80
}
Expand Down Expand Up @@ -1092,10 +1092,11 @@
"string",
"null"
],
"when": "",
"default": null,
"markdownDescription": "Specifies how absolute dates will be formatted in the _Commit Graph_. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats",
"markdownDescription": "Specifies how **absolute** dates will be formatted in the _Commit Graph_. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats. Only applies when `#gitlens.graph.dateFormat#` is set to `absolute`. When not specified, the `#gitlens.defaultDateFormat#` value is used",
"scope": "window",
"order": 600
"order": 601
},
"gitlens.graph.dateStyle": {
"type": [
Expand All @@ -1104,16 +1105,18 @@
],
"default": null,
"enum": [
null,
"relative",
"absolute"
],
"enumDescriptions": [
"inherited from gitlens.defaultDateStyle",
"e.g. 1 day ago",
"e.g. July 25th, 2018 7:18pm"
],
"markdownDescription": "Specifies how dates will be displayed in the _Commit Graph_",
"markdownDescription": "Specifies how dates will be displayed in the _Commit Graph_. When not specified, the `#gitlens.defaultDateStyle#` value is used",
"scope": "window",
"order": 601
"order": 600
},
"gitlens.graph.commitOrdering": {
"type": "string",
Expand Down