@codingame/monaco-vscode-comments-service-override 8.0.2 → 8.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-comments-service-override",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"vscode": "npm:@codingame/monaco-vscode-api@8.0.
|
|
29
|
+
"vscode": "npm:@codingame/monaco-vscode-api@8.0.3"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -84,7 +84,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
84
84
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
85
85
|
command: {
|
|
86
86
|
id: CommentCommandId.NextRange,
|
|
87
|
-
title: ( localize(
|
|
87
|
+
title: ( localize(5313, "Go to Next Commenting Range")),
|
|
88
88
|
category: 'Comments',
|
|
89
89
|
},
|
|
90
90
|
when: CommentContextKeys.activeEditorHasCommentingRange
|
|
@@ -116,7 +116,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
116
116
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
117
117
|
command: {
|
|
118
118
|
id: CommentCommandId.PreviousRange,
|
|
119
|
-
title: ( localize(
|
|
119
|
+
title: ( localize(5314, "Go to Previous Commenting Range")),
|
|
120
120
|
category: 'Comments',
|
|
121
121
|
},
|
|
122
122
|
when: CommentContextKeys.activeEditorHasCommentingRange
|
|
@@ -132,7 +132,7 @@ CommandsRegistry.registerCommand({
|
|
|
132
132
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
133
133
|
command: {
|
|
134
134
|
id: CommentCommandId.ToggleCommenting,
|
|
135
|
-
title: ( localize(
|
|
135
|
+
title: ( localize(5315, "Toggle Editor Commenting")),
|
|
136
136
|
category: 'Comments',
|
|
137
137
|
},
|
|
138
138
|
when: CommentContextKeys.WorkspaceHasCommenting
|
|
@@ -160,7 +160,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
160
160
|
await controller.addOrToggleCommentAtLine(position, undefined);
|
|
161
161
|
}
|
|
162
162
|
catch (e) {
|
|
163
|
-
notificationService.error(( localize(
|
|
163
|
+
notificationService.error(( localize(5316, "The cursor must be within a commenting range to add a comment")));
|
|
164
164
|
}
|
|
165
165
|
},
|
|
166
166
|
weight: KeybindingWeight.EditorContrib,
|
|
@@ -169,7 +169,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
|
|
|
169
169
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
170
170
|
command: {
|
|
171
171
|
id: CommentCommandId.Add,
|
|
172
|
-
title: ( localize(
|
|
172
|
+
title: ( localize(5317, "Add Comment on Current Selection")),
|
|
173
173
|
category: 'Comments'
|
|
174
174
|
},
|
|
175
175
|
when: CommentContextKeys.activeCursorHasCommentingRange
|
|
@@ -183,7 +183,7 @@ CommandsRegistry.registerCommand({
|
|
|
183
183
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
184
184
|
command: {
|
|
185
185
|
id: CommentCommandId.CollapseAll,
|
|
186
|
-
title: ( localize(
|
|
186
|
+
title: ( localize(5318, "Collapse All Comments")),
|
|
187
187
|
category: 'Comments'
|
|
188
188
|
},
|
|
189
189
|
when: CommentContextKeys.WorkspaceHasCommenting
|
|
@@ -197,7 +197,7 @@ CommandsRegistry.registerCommand({
|
|
|
197
197
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
198
198
|
command: {
|
|
199
199
|
id: CommentCommandId.ExpandAll,
|
|
200
|
-
title: ( localize(
|
|
200
|
+
title: ( localize(5319, "Expand All Comments")),
|
|
201
201
|
category: 'Comments'
|
|
202
202
|
},
|
|
203
203
|
when: CommentContextKeys.WorkspaceHasCommenting
|
|
@@ -211,7 +211,7 @@ CommandsRegistry.registerCommand({
|
|
|
211
211
|
MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
|
212
212
|
command: {
|
|
213
213
|
id: CommentCommandId.ExpandUnresolved,
|
|
214
|
-
title: ( localize(
|
|
214
|
+
title: ( localize(5320, "Expand Unresolved Comments")),
|
|
215
215
|
category: 'Comments'
|
|
216
216
|
},
|
|
217
217
|
when: CommentContextKeys.WorkspaceHasCommenting
|