You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+65-28Lines changed: 65 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -66,41 +66,41 @@
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,7 +110,7 @@
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,7 +3444,7 @@
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,7 +3477,7 @@
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,7 +3528,7 @@
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",
@@ -3831,6 +3831,13 @@
3831
3831
"scope": "window",
3832
3832
"order": 110
3833
3833
},
3834
+
"gitlens.experimental.nativeGit": {
3835
+
"type": "boolean",
3836
+
"default": false,
3837
+
"markdownDescription": "(Experimental) Specifies whether to use Git directly for fetch/push/pull operation instead of relying on VS Code's built-in Git implementation",
0 commit comments