|
18 | 18 | "url": "https://github.com/eamodio/vscode-gitlens.git" |
19 | 19 | }, |
20 | 20 | "engines": { |
21 | | - "vscode": "^1.29.0" |
| 21 | + "vscode": "^1.30.0" |
22 | 22 | }, |
23 | 23 | "main": "./dist/extension", |
24 | 24 | "icon": "images/gitlens-icon.png", |
|
1207 | 1207 | }, |
1208 | 1208 | "gitlens.views.commitFileFormat": { |
1209 | 1209 | "type": "string", |
1210 | | - "default": "${filePath}", |
| 1210 | + "default": "${file}", |
1211 | 1211 | "markdownDescription": "Specifies the format of a committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path", |
1212 | 1212 | "scope": "window" |
1213 | 1213 | }, |
| 1214 | + "gitlens.views.commitFileDescriptionFormat": { |
| 1215 | + "type": "string", |
| 1216 | + "default": "${directory}", |
| 1217 | + "markdownDescription": "Specifies the description format of a committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path", |
| 1218 | + "scope": "window" |
| 1219 | + }, |
1214 | 1220 | "gitlens.views.commitFormat": { |
1215 | 1221 | "type": "string", |
1216 | | - "default": "${message} • ${authorAgoOrDate}${ • changes}${ (id)}", |
| 1222 | + "default": "${message}", |
1217 | 1223 | "markdownDescription": "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\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#`", |
1218 | 1224 | "scope": "window" |
1219 | 1225 | }, |
| 1226 | + "gitlens.views.commitDescriptionFormat": { |
| 1227 | + "type": "string", |
| 1228 | + "default": "${changes • }${authorAgoOrDate}", |
| 1229 | + "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#`", |
| 1230 | + "scope": "window" |
| 1231 | + }, |
1220 | 1232 | "gitlens.views.compare.enabled": { |
1221 | 1233 | "type": "boolean", |
1222 | 1234 | "default": true, |
|
1469 | 1481 | }, |
1470 | 1482 | "gitlens.views.stashFileFormat": { |
1471 | 1483 | "type": "string", |
1472 | | - "default": "${filePath}", |
| 1484 | + "default": "${file}", |
1473 | 1485 | "markdownDescription": "Specifies the format of a stashed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path", |
1474 | 1486 | "scope": "window" |
1475 | 1487 | }, |
| 1488 | + "gitlens.views.stashFileDescriptionFormat": { |
| 1489 | + "type": "string", |
| 1490 | + "default": "${directory}", |
| 1491 | + "markdownDescription": "Specifies the description format of a stashed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path", |
| 1492 | + "scope": "window" |
| 1493 | + }, |
1476 | 1494 | "gitlens.views.stashFormat": { |
1477 | 1495 | "type": "string", |
1478 | | - "default": "${message} • ${agoOrDate}${ • changes}", |
| 1496 | + "default": "${message}", |
1479 | 1497 | "markdownDescription": "Specifies the format of stashed 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.statusBar.dateFormat#`)\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#`", |
1480 | 1498 | "scope": "window" |
1481 | 1499 | }, |
| 1500 | + "gitlens.views.stashDescriptionFormat": { |
| 1501 | + "type": "string", |
| 1502 | + "default": "${changes • }${agoOrDate}", |
| 1503 | + "markdownDescription": "Specifies the description format of stashed 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.statusBar.dateFormat#`)\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#`", |
| 1504 | + "scope": "window" |
| 1505 | + }, |
1482 | 1506 | "gitlens.views.statusFileFormat": { |
1483 | 1507 | "type": "string", |
1484 | | - "default": "${working }${filePath}", |
| 1508 | + "default": "${working }${file}", |
1485 | 1509 | "markdownDescription": "Specifies the format of the status of a working or committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path\n - `${working}` — optional indicator if the file is uncommitted", |
1486 | 1510 | "scope": "window" |
1487 | 1511 | }, |
| 1512 | + "gitlens.views.statusFileDescriptionFormat": { |
| 1513 | + "type": "string", |
| 1514 | + "default": "${directory}", |
| 1515 | + "markdownDescription": "Specifies the description format of the status of a working or committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path\n - `${working}` — optional indicator if the file is uncommitted", |
| 1516 | + "scope": "window" |
| 1517 | + }, |
1488 | 1518 | "gitlens.advanced.blame.customArguments": { |
1489 | 1519 | "type": "array", |
1490 | 1520 | "default": null, |
|
0 commit comments