|
66 | 66 | "configuration": [ |
67 | 67 | { |
68 | 68 | "id": "current-line-blame", |
69 | | - "title": "Current Line Blame", |
| 69 | + "title": "Inline Blame", |
70 | 70 | "order": 10, |
71 | 71 | "properties": { |
72 | 72 | "gitlens.currentLine.enabled": { |
73 | 73 | "type": "boolean", |
74 | 74 | "default": true, |
75 | | - "markdownDescription": "Specifies whether to provide a blame annotation for the current line, by default. Use the `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) to toggle the annotations on and off for the current window", |
| 75 | + "markdownDescription": "Specifies whether to provide an inline blame annotation for the current line, by default. Use the `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) to toggle the annotations on and off for the current window", |
76 | 76 | "scope": "window", |
77 | 77 | "order": 10 |
78 | 78 | }, |
79 | 79 | "gitlens.currentLine.pullRequests.enabled": { |
80 | 80 | "type": "boolean", |
81 | 81 | "default": true, |
82 | | - "markdownDescription": "Specifies whether to provide information about the Pull Request (if any) that introduced the commit in the current line blame annotation. Requires a connection to a supported remote service (e.g. GitHub)", |
| 82 | + "markdownDescription": "Specifies whether to provide information about the Pull Request (if any) that introduced the commit in the inline blame annotation. Requires a connection to a supported remote service (e.g. GitHub)", |
83 | 83 | "scope": "window", |
84 | 84 | "order": 20 |
85 | 85 | }, |
86 | 86 | "gitlens.currentLine.format": { |
87 | 87 | "type": "string", |
88 | 88 | "default": "${author, }${agoOrDate}${' via 'pullRequest}${ • message|50?}", |
89 | | - "markdownDescription": "Specifies the format of the current line blame annotation. See [_Commit Tokens_](https://github.com/gitkraken/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs. Date formatting is controlled by the `#gitlens.currentLine.dateFormat#` setting", |
| 89 | + "markdownDescription": "Specifies the format of the inline blame annotation. See [_Commit Tokens_](https://github.com/gitkraken/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs. Date formatting is controlled by the `#gitlens.currentLine.dateFormat#` setting", |
90 | 90 | "scope": "window", |
91 | 91 | "order": 30 |
92 | 92 | }, |
93 | 93 | "gitlens.currentLine.uncommittedChangesFormat": { |
94 | 94 | "type": "string", |
95 | 95 | "default": null, |
96 | | - "markdownDescription": "Specifies the uncommitted changes format of the current line blame annotation. See [_Commit Tokens_](https://github.com/gitkraken/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs. Date formatting is controlled by the `#gitlens.currentLine.dateFormat#` setting.\n\n**NOTE**: Setting this to an empty string will disable current line blame annotations for uncommitted changes.", |
| 96 | + "markdownDescription": "Specifies the uncommitted changes format of the inline blame annotation. See [_Commit Tokens_](https://github.com/gitkraken/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs. Date formatting is controlled by the `#gitlens.currentLine.dateFormat#` setting.\n\n**NOTE**: Setting this to an empty string will disable inline blame annotations for uncommitted changes.", |
97 | 97 | "scope": "window", |
98 | 98 | "order": 31 |
99 | 99 | }, |
100 | 100 | "gitlens.currentLine.scrollable": { |
101 | 101 | "type": "boolean", |
102 | 102 | "default": true, |
103 | | - "markdownDescription": "Specifies whether the current line blame annotation can be scrolled into view when it is outside the viewport. **NOTE**: Setting this to `false` will inhibit the hovers from showing over the annotation; Set `#gitlens.hovers.currentLine.over#` to `line` to enable the hovers to show anywhere over the line.", |
| 103 | + "markdownDescription": "Specifies whether the inline blame annotation can be scrolled into view when it is outside the viewport. **NOTE**: Setting this to `false` will inhibit the hovers from showing over the annotation; Set `#gitlens.hovers.currentLine.over#` to `line` to enable the hovers to show anywhere over the line.", |
104 | 104 | "scope": "window", |
105 | 105 | "order": 40 |
106 | 106 | }, |
|
110 | 110 | "null" |
111 | 111 | ], |
112 | 112 | "default": null, |
113 | | - "markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) for the current line blame annotation. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats", |
| 113 | + "markdownDescription": "Specifies how to format absolute dates (e.g. using the `${date}` token) for the cinline blame annotation. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for supported formats", |
114 | 114 | "scope": "window", |
115 | 115 | "order": 50 |
116 | 116 | } |
|
3444 | 3444 | }, |
3445 | 3445 | "currentLine": { |
3446 | 3446 | "type": "boolean", |
3447 | | - "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active" |
| 3447 | + "description": "Specifies whether to show an inline blame annotation for the current line when this user-defined mode is active" |
3448 | 3448 | }, |
3449 | 3449 | "hovers": { |
3450 | 3450 | "type": "boolean", |
|
3477 | 3477 | }, |
3478 | 3478 | "currentLine": { |
3479 | 3479 | "type": "boolean", |
3480 | | - "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active" |
| 3480 | + "description": "Specifies whether to show an inline blame annotation for the current line when this user-defined mode is active" |
3481 | 3481 | }, |
3482 | 3482 | "hovers": { |
3483 | 3483 | "type": "boolean", |
|
3528 | 3528 | }, |
3529 | 3529 | "currentLine": { |
3530 | 3530 | "type": "boolean", |
3531 | | - "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active" |
| 3531 | + "description": "Specifies whether to show an inline blame annotation for the current line when this user-defined mode is active" |
3532 | 3532 | }, |
3533 | 3533 | "hovers": { |
3534 | 3534 | "type": "boolean", |
|
4024 | 4024 | }, |
4025 | 4025 | { |
4026 | 4026 | "id": "gitlens.trailingLineBackgroundColor", |
4027 | | - "description": "Specifies the background color of the blame annotation for the current line", |
| 4027 | + "description": "Specifies the background color of the inline blame annotation for the current line", |
4028 | 4028 | "defaults": { |
4029 | 4029 | "dark": "#00000000", |
4030 | 4030 | "light": "#00000000", |
|
4033 | 4033 | }, |
4034 | 4034 | { |
4035 | 4035 | "id": "gitlens.trailingLineForegroundColor", |
4036 | | - "description": "Specifies the foreground color of the blame annotation for the current line", |
| 4036 | + "description": "Specifies the foreground color of the inline blame annotation for the current line", |
4037 | 4037 | "defaults": { |
4038 | 4038 | "dark": "#99999959", |
4039 | 4039 | "light": "#99999959", |
|
0 commit comments