@codingame/monaco-vscode-keybindings-service-override 23.0.2 → 23.0.4

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-keybindings-service-override",
3
- "version": "23.0.2",
3
+ "version": "23.0.4",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - keybindings service-override",
6
6
  "keywords": [],
@@ -15,13 +15,13 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-2808e692-5fb9-54bf-bc21-1d3bff81e651-common": "23.0.2",
19
- "@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common": "23.0.2",
20
- "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "23.0.2",
21
- "@codingame/monaco-vscode-a3eaa464-944c-5b8f-8886-213068ba4897-common": "23.0.2",
22
- "@codingame/monaco-vscode-api": "23.0.2",
23
- "@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common": "23.0.2",
24
- "@codingame/monaco-vscode-files-service-override": "23.0.2"
18
+ "@codingame/monaco-vscode-2808e692-5fb9-54bf-bc21-1d3bff81e651-common": "23.0.4",
19
+ "@codingame/monaco-vscode-2a22c7b4-b906-5914-8cd1-3ed912fb738f-common": "23.0.4",
20
+ "@codingame/monaco-vscode-40cada32-7e9c-528a-81fc-766e4da54147-common": "23.0.4",
21
+ "@codingame/monaco-vscode-a3eaa464-944c-5b8f-8886-213068ba4897-common": "23.0.4",
22
+ "@codingame/monaco-vscode-api": "23.0.4",
23
+ "@codingame/monaco-vscode-d609a7d3-bf87-551a-884f-550a8b327ec5-common": "23.0.4",
24
+ "@codingame/monaco-vscode-files-service-override": "23.0.4"
25
25
  },
26
26
  "main": "index.js",
27
27
  "module": "index.js",
@@ -10,10 +10,10 @@ class RunCommands extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: 'runCommands',
13
- title: ( localize2(6111, "Run Commands")),
13
+ title: ( localize2(6115, "Run Commands")),
14
14
  f1: false,
15
15
  metadata: {
16
- description: ( localize(6112, "Run several commands")),
16
+ description: ( localize(6116, "Run several commands")),
17
17
  args: [
18
18
  {
19
19
  name: 'args',
@@ -23,7 +23,7 @@ class RunCommands extends Action2 {
23
23
  properties: {
24
24
  commands: {
25
25
  type: 'array',
26
- description: ( localize(6113, "Commands to run")),
26
+ description: ( localize(6117, "Commands to run")),
27
27
  items: {
28
28
  anyOf: [
29
29
  {
@@ -63,14 +63,14 @@ class RunCommands extends Action2 {
63
63
  const notificationService = accessor.get(INotificationService);
64
64
  if (!this._isCommandArgs(args)) {
65
65
  notificationService.error(( localize(
66
- 6114,
66
+ 6118,
67
67
  "'runCommands' has received an argument with incorrect type. Please, review the argument passed to the command."
68
68
  )));
69
69
  return;
70
70
  }
71
71
  if (args.commands.length === 0) {
72
72
  notificationService.warn(( localize(
73
- 6115,
73
+ 6119,
74
74
  "'runCommands' has not received commands to run. Did you forget to pass commands in the 'runCommands' argument?"
75
75
  )));
76
76
  return;
@@ -15,7 +15,7 @@ class ToggleKeybindingsLogAction extends Action2 {
15
15
  constructor() {
16
16
  super({
17
17
  id: 'workbench.action.toggleKeybindingsLog',
18
- title: ( localize2(8328, "Toggle Keyboard Shortcuts Troubleshooting")),
18
+ title: ( localize2(8332, "Toggle Keyboard Shortcuts Troubleshooting")),
19
19
  category: Categories.Developer,
20
20
  f1: true
21
21
  });
@@ -24,7 +24,7 @@ import { DEFINE_KEYBINDING_EDITOR_CONTRIB_ID } from '@codingame/monaco-vscode-28
24
24
 
25
25
  var KeybindingEditorDecorationsRenderer_1;
26
26
  const NLS_KB_LAYOUT_ERROR_MESSAGE = ( localize(
27
- 9683,
27
+ 9687,
28
28
  "You won't be able to produce this key combination under your current keyboard layout."
29
29
  ));
30
30
  let DefineKeybindingEditorContribution = class DefineKeybindingEditorContribution extends Disposable {
@@ -182,14 +182,14 @@ let KeybindingEditorDecorationsRenderer = KeybindingEditorDecorationsRenderer_1
182
182
  else {
183
183
  if (usLabel && uiLabel !== usLabel) {
184
184
  msg = ( new MarkdownString(( localize(
185
- 9684,
185
+ 9688,
186
186
  "**{0}** for your current keyboard layout (**{1}** for US standard).",
187
187
  uiLabel,
188
188
  usLabel
189
189
  ))));
190
190
  }
191
191
  else {
192
- msg = ( new MarkdownString(( localize(9685, "**{0}** for your current keyboard layout.", uiLabel))));
192
+ msg = ( new MarkdownString(( localize(9689, "**{0}** for your current keyboard layout.", uiLabel))));
193
193
  }
194
194
  className = 'keybindingInfo';
195
195
  overviewRulerColor = themeColorFromId(overviewRulerInfo);
@@ -21,231 +21,231 @@ const apiMenus = [
21
21
  {
22
22
  key: 'commandPalette',
23
23
  id: MenuId.CommandPalette,
24
- description: ( localize(13368, "The Command Palette")),
24
+ description: ( localize(13371, "The Command Palette")),
25
25
  supportsSubmenus: false
26
26
  },
27
27
  {
28
28
  key: 'touchBar',
29
29
  id: MenuId.TouchBarContext,
30
- description: ( localize(13369, "The touch bar (macOS only)")),
30
+ description: ( localize(13372, "The touch bar (macOS only)")),
31
31
  supportsSubmenus: false
32
32
  },
33
33
  {
34
34
  key: 'editor/title',
35
35
  id: MenuId.EditorTitle,
36
- description: ( localize(13370, "The editor title menu"))
36
+ description: ( localize(13373, "The editor title menu"))
37
37
  },
38
38
  {
39
39
  key: 'editor/title/run',
40
40
  id: MenuId.EditorTitleRun,
41
- description: ( localize(13371, "Run submenu inside the editor title menu"))
41
+ description: ( localize(13374, "Run submenu inside the editor title menu"))
42
42
  },
43
43
  {
44
44
  key: 'editor/context',
45
45
  id: MenuId.EditorContext,
46
- description: ( localize(13372, "The editor context menu"))
46
+ description: ( localize(13375, "The editor context menu"))
47
47
  },
48
48
  {
49
49
  key: 'editor/context/copy',
50
50
  id: MenuId.EditorContextCopy,
51
- description: ( localize(13373, "'Copy as' submenu in the editor context menu"))
51
+ description: ( localize(13376, "'Copy as' submenu in the editor context menu"))
52
52
  },
53
53
  {
54
54
  key: 'editor/context/share',
55
55
  id: MenuId.EditorContextShare,
56
- description: ( localize(13374, "'Share' submenu in the editor context menu")),
56
+ description: ( localize(13377, "'Share' submenu in the editor context menu")),
57
57
  proposed: 'contribShareMenu'
58
58
  },
59
59
  {
60
60
  key: 'explorer/context',
61
61
  id: MenuId.ExplorerContext,
62
- description: ( localize(13375, "The file explorer context menu"))
62
+ description: ( localize(13378, "The file explorer context menu"))
63
63
  },
64
64
  {
65
65
  key: 'explorer/context/share',
66
66
  id: MenuId.ExplorerContextShare,
67
- description: ( localize(13376, "'Share' submenu in the file explorer context menu")),
67
+ description: ( localize(13379, "'Share' submenu in the file explorer context menu")),
68
68
  proposed: 'contribShareMenu'
69
69
  },
70
70
  {
71
71
  key: 'editor/title/context',
72
72
  id: MenuId.EditorTitleContext,
73
- description: ( localize(13377, "The editor tabs context menu"))
73
+ description: ( localize(13380, "The editor tabs context menu"))
74
74
  },
75
75
  {
76
76
  key: 'editor/title/context/share',
77
77
  id: MenuId.EditorTitleContextShare,
78
- description: ( localize(13378, "'Share' submenu inside the editor title context menu")),
78
+ description: ( localize(13381, "'Share' submenu inside the editor title context menu")),
79
79
  proposed: 'contribShareMenu'
80
80
  },
81
81
  {
82
82
  key: 'debug/callstack/context',
83
83
  id: MenuId.DebugCallStackContext,
84
- description: ( localize(13379, "The debug callstack view context menu"))
84
+ description: ( localize(13382, "The debug callstack view context menu"))
85
85
  },
86
86
  {
87
87
  key: 'debug/variables/context',
88
88
  id: MenuId.DebugVariablesContext,
89
- description: ( localize(13380, "The debug variables view context menu"))
89
+ description: ( localize(13383, "The debug variables view context menu"))
90
90
  },
91
91
  {
92
92
  key: 'debug/watch/context',
93
93
  id: MenuId.DebugWatchContext,
94
- description: ( localize(13381, "The debug watch view context menu"))
94
+ description: ( localize(13384, "The debug watch view context menu"))
95
95
  },
96
96
  {
97
97
  key: 'debug/toolBar',
98
98
  id: MenuId.DebugToolBar,
99
- description: ( localize(13382, "The debug toolbar menu"))
99
+ description: ( localize(13385, "The debug toolbar menu"))
100
100
  },
101
101
  {
102
102
  key: 'debug/createConfiguration',
103
103
  id: MenuId.DebugCreateConfiguration,
104
104
  proposed: 'contribDebugCreateConfiguration',
105
- description: ( localize(13383, "The debug create configuration menu"))
105
+ description: ( localize(13386, "The debug create configuration menu"))
106
106
  },
107
107
  {
108
108
  key: 'notebook/variables/context',
109
109
  id: MenuId.NotebookVariablesContext,
110
- description: ( localize(13384, "The notebook variables view context menu"))
110
+ description: ( localize(13387, "The notebook variables view context menu"))
111
111
  },
112
112
  {
113
113
  key: 'menuBar/home',
114
114
  id: MenuId.MenubarHomeMenu,
115
- description: ( localize(13385, "The home indicator context menu (web only)")),
115
+ description: ( localize(13388, "The home indicator context menu (web only)")),
116
116
  proposed: 'contribMenuBarHome',
117
117
  supportsSubmenus: false
118
118
  },
119
119
  {
120
120
  key: 'menuBar/edit/copy',
121
121
  id: MenuId.MenubarCopy,
122
- description: ( localize(13386, "'Copy as' submenu in the top level Edit menu"))
122
+ description: ( localize(13389, "'Copy as' submenu in the top level Edit menu"))
123
123
  },
124
124
  {
125
125
  key: 'scm/title',
126
126
  id: MenuId.SCMTitle,
127
- description: ( localize(13387, "The Source Control title menu"))
127
+ description: ( localize(13390, "The Source Control title menu"))
128
128
  },
129
129
  {
130
130
  key: 'scm/sourceControl',
131
131
  id: MenuId.SCMSourceControl,
132
- description: ( localize(13388, "The Source Control menu"))
132
+ description: ( localize(13391, "The Source Control menu"))
133
133
  },
134
134
  {
135
135
  key: 'scm/repositories/title',
136
136
  id: MenuId.SCMSourceControlTitle,
137
- description: ( localize(13389, "The Source Control Repositories title menu")),
137
+ description: ( localize(13392, "The Source Control Repositories title menu")),
138
138
  proposed: 'contribSourceControlTitleMenu'
139
139
  },
140
140
  {
141
141
  key: 'scm/repository',
142
142
  id: MenuId.SCMSourceControlInline,
143
- description: ( localize(13390, "The Source Control repository menu")),
143
+ description: ( localize(13393, "The Source Control repository menu")),
144
144
  },
145
145
  {
146
146
  key: 'scm/resourceState/context',
147
147
  id: MenuId.SCMResourceContext,
148
- description: ( localize(13391, "The Source Control resource state context menu"))
148
+ description: ( localize(13394, "The Source Control resource state context menu"))
149
149
  },
150
150
  {
151
151
  key: 'scm/resourceFolder/context',
152
152
  id: MenuId.SCMResourceFolderContext,
153
- description: ( localize(13392, "The Source Control resource folder context menu"))
153
+ description: ( localize(13395, "The Source Control resource folder context menu"))
154
154
  },
155
155
  {
156
156
  key: 'scm/resourceGroup/context',
157
157
  id: MenuId.SCMResourceGroupContext,
158
- description: ( localize(13393, "The Source Control resource group context menu"))
158
+ description: ( localize(13396, "The Source Control resource group context menu"))
159
159
  },
160
160
  {
161
161
  key: 'scm/change/title',
162
162
  id: MenuId.SCMChangeContext,
163
- description: ( localize(13394, "The Source Control inline change menu"))
163
+ description: ( localize(13397, "The Source Control inline change menu"))
164
164
  },
165
165
  {
166
166
  key: 'scm/inputBox',
167
167
  id: MenuId.SCMInputBox,
168
- description: ( localize(13395, "The Source Control input box menu")),
168
+ description: ( localize(13398, "The Source Control input box menu")),
169
169
  proposed: 'contribSourceControlInputBoxMenu'
170
170
  },
171
171
  {
172
172
  key: 'scm/history/title',
173
173
  id: MenuId.SCMHistoryTitle,
174
- description: ( localize(13396, "The Source Control History title menu")),
174
+ description: ( localize(13399, "The Source Control History title menu")),
175
175
  proposed: 'contribSourceControlHistoryTitleMenu'
176
176
  },
177
177
  {
178
178
  key: 'scm/historyItem/context',
179
179
  id: MenuId.SCMHistoryItemContext,
180
- description: ( localize(13397, "The Source Control history item context menu")),
180
+ description: ( localize(13400, "The Source Control history item context menu")),
181
181
  proposed: 'contribSourceControlHistoryItemMenu'
182
182
  },
183
183
  {
184
184
  key: 'scm/historyItemRef/context',
185
185
  id: MenuId.SCMHistoryItemRefContext,
186
- description: ( localize(13398, "The Source Control history item reference context menu")),
186
+ description: ( localize(13401, "The Source Control history item reference context menu")),
187
187
  proposed: 'contribSourceControlHistoryItemMenu'
188
188
  },
189
189
  {
190
190
  key: 'scm/artifactGroup/context',
191
191
  id: MenuId.SCMArtifactGroupContext,
192
- description: ( localize(13399, "The Source Control artifact group context menu")),
192
+ description: ( localize(13402, "The Source Control artifact group context menu")),
193
193
  proposed: 'contribSourceControlArtifactGroupMenu'
194
194
  },
195
195
  {
196
196
  key: 'scm/artifact/context',
197
197
  id: MenuId.SCMArtifactContext,
198
- description: ( localize(13400, "The Source Control artifact context menu")),
198
+ description: ( localize(13403, "The Source Control artifact context menu")),
199
199
  proposed: 'contribSourceControlArtifactMenu'
200
200
  },
201
201
  {
202
202
  key: 'statusBar/remoteIndicator',
203
203
  id: MenuId.StatusBarRemoteIndicatorMenu,
204
- description: ( localize(13401, "The remote indicator menu in the status bar")),
204
+ description: ( localize(13404, "The remote indicator menu in the status bar")),
205
205
  supportsSubmenus: false
206
206
  },
207
207
  {
208
208
  key: 'terminal/context',
209
209
  id: MenuId.TerminalInstanceContext,
210
- description: ( localize(13402, "The terminal context menu"))
210
+ description: ( localize(13405, "The terminal context menu"))
211
211
  },
212
212
  {
213
213
  key: 'terminal/title/context',
214
214
  id: MenuId.TerminalTabContext,
215
- description: ( localize(13403, "The terminal tabs context menu"))
215
+ description: ( localize(13406, "The terminal tabs context menu"))
216
216
  },
217
217
  {
218
218
  key: 'view/title',
219
219
  id: MenuId.ViewTitle,
220
- description: ( localize(13404, "The contributed view title menu"))
220
+ description: ( localize(13407, "The contributed view title menu"))
221
221
  },
222
222
  {
223
223
  key: 'viewContainer/title',
224
224
  id: MenuId.ViewContainerTitle,
225
- description: ( localize(13405, "The contributed view container title menu")),
225
+ description: ( localize(13408, "The contributed view container title menu")),
226
226
  proposed: 'contribViewContainerTitle'
227
227
  },
228
228
  {
229
229
  key: 'view/item/context',
230
230
  id: MenuId.ViewItemContext,
231
- description: ( localize(13406, "The contributed view item context menu"))
231
+ description: ( localize(13409, "The contributed view item context menu"))
232
232
  },
233
233
  {
234
234
  key: 'comments/comment/editorActions',
235
235
  id: MenuId.CommentEditorActions,
236
- description: ( localize(13407, "The contributed comment editor actions")),
236
+ description: ( localize(13410, "The contributed comment editor actions")),
237
237
  proposed: 'contribCommentEditorActionsMenu'
238
238
  },
239
239
  {
240
240
  key: 'comments/commentThread/title',
241
241
  id: MenuId.CommentThreadTitle,
242
- description: ( localize(13408, "The contributed comment thread title menu"))
242
+ description: ( localize(13411, "The contributed comment thread title menu"))
243
243
  },
244
244
  {
245
245
  key: 'comments/commentThread/context',
246
246
  id: MenuId.CommentThreadActions,
247
247
  description: ( localize(
248
- 13409,
248
+ 13412,
249
249
  "The contributed comment thread context menu, rendered as buttons below the comment editor"
250
250
  )),
251
251
  supportsSubmenus: false
@@ -254,7 +254,7 @@ const apiMenus = [
254
254
  key: 'comments/commentThread/additionalActions',
255
255
  id: MenuId.CommentThreadAdditionalActions,
256
256
  description: ( localize(
257
- 13409,
257
+ 13412,
258
258
  "The contributed comment thread context menu, rendered as buttons below the comment editor"
259
259
  )),
260
260
  supportsSubmenus: true,
@@ -264,7 +264,7 @@ const apiMenus = [
264
264
  key: 'comments/commentThread/title/context',
265
265
  id: MenuId.CommentThreadTitleContext,
266
266
  description: ( localize(
267
- 13410,
267
+ 13413,
268
268
  "The contributed comment thread title's peek context menu, rendered as a right click menu on the comment thread's peek title."
269
269
  )),
270
270
  proposed: 'contribCommentPeekContext'
@@ -272,13 +272,13 @@ const apiMenus = [
272
272
  {
273
273
  key: 'comments/comment/title',
274
274
  id: MenuId.CommentTitle,
275
- description: ( localize(13411, "The contributed comment title menu"))
275
+ description: ( localize(13414, "The contributed comment title menu"))
276
276
  },
277
277
  {
278
278
  key: 'comments/comment/context',
279
279
  id: MenuId.CommentActions,
280
280
  description: ( localize(
281
- 13412,
281
+ 13415,
282
282
  "The contributed comment context menu, rendered as buttons below the comment editor"
283
283
  )),
284
284
  supportsSubmenus: false
@@ -287,7 +287,7 @@ const apiMenus = [
287
287
  key: 'comments/commentThread/comment/context',
288
288
  id: MenuId.CommentThreadCommentContext,
289
289
  description: ( localize(
290
- 13413,
290
+ 13416,
291
291
  "The contributed comment context menu, rendered as a right click menu on the an individual comment in the comment thread's peek view."
292
292
  )),
293
293
  proposed: 'contribCommentPeekContext'
@@ -295,113 +295,113 @@ const apiMenus = [
295
295
  {
296
296
  key: 'commentsView/commentThread/context',
297
297
  id: MenuId.CommentsViewThreadActions,
298
- description: ( localize(13414, "The contributed comment thread context menu in the comments view")),
298
+ description: ( localize(13417, "The contributed comment thread context menu in the comments view")),
299
299
  proposed: 'contribCommentsViewThreadMenus'
300
300
  },
301
301
  {
302
302
  key: 'notebook/toolbar',
303
303
  id: MenuId.NotebookToolbar,
304
- description: ( localize(13415, "The contributed notebook toolbar menu"))
304
+ description: ( localize(13418, "The contributed notebook toolbar menu"))
305
305
  },
306
306
  {
307
307
  key: 'notebook/kernelSource',
308
308
  id: MenuId.NotebookKernelSource,
309
- description: ( localize(13416, "The contributed notebook kernel sources menu")),
309
+ description: ( localize(13419, "The contributed notebook kernel sources menu")),
310
310
  proposed: 'notebookKernelSource'
311
311
  },
312
312
  {
313
313
  key: 'notebook/cell/title',
314
314
  id: MenuId.NotebookCellTitle,
315
- description: ( localize(13417, "The contributed notebook cell title menu"))
315
+ description: ( localize(13420, "The contributed notebook cell title menu"))
316
316
  },
317
317
  {
318
318
  key: 'notebook/cell/execute',
319
319
  id: MenuId.NotebookCellExecute,
320
- description: ( localize(13418, "The contributed notebook cell execution menu"))
320
+ description: ( localize(13421, "The contributed notebook cell execution menu"))
321
321
  },
322
322
  {
323
323
  key: 'interactive/toolbar',
324
324
  id: MenuId.InteractiveToolbar,
325
- description: ( localize(13419, "The contributed interactive toolbar menu")),
325
+ description: ( localize(13422, "The contributed interactive toolbar menu")),
326
326
  },
327
327
  {
328
328
  key: 'interactive/cell/title',
329
329
  id: MenuId.InteractiveCellTitle,
330
- description: ( localize(13420, "The contributed interactive cell title menu")),
330
+ description: ( localize(13423, "The contributed interactive cell title menu")),
331
331
  },
332
332
  {
333
333
  key: 'issue/reporter',
334
334
  id: MenuId.IssueReporter,
335
- description: ( localize(13421, "The contributed issue reporter menu"))
335
+ description: ( localize(13424, "The contributed issue reporter menu"))
336
336
  },
337
337
  {
338
338
  key: 'testing/item/context',
339
339
  id: MenuId.TestItem,
340
- description: ( localize(13422, "The contributed test item menu")),
340
+ description: ( localize(13425, "The contributed test item menu")),
341
341
  },
342
342
  {
343
343
  key: 'testing/item/gutter',
344
344
  id: MenuId.TestItemGutter,
345
- description: ( localize(13423, "The menu for a gutter decoration for a test item")),
345
+ description: ( localize(13426, "The menu for a gutter decoration for a test item")),
346
346
  },
347
347
  {
348
348
  key: 'testing/profiles/context',
349
349
  id: MenuId.TestProfilesContext,
350
- description: ( localize(13424, "The menu for configuring testing profiles.")),
350
+ description: ( localize(13427, "The menu for configuring testing profiles.")),
351
351
  },
352
352
  {
353
353
  key: 'testing/item/result',
354
354
  id: MenuId.TestPeekElement,
355
- description: ( localize(13425, "The menu for an item in the Test Results view or peek.")),
355
+ description: ( localize(13428, "The menu for an item in the Test Results view or peek.")),
356
356
  },
357
357
  {
358
358
  key: 'testing/message/context',
359
359
  id: MenuId.TestMessageContext,
360
360
  description: ( localize(
361
- 13426,
361
+ 13429,
362
362
  "A prominent button overlaying editor content where the message is displayed"
363
363
  )),
364
364
  },
365
365
  {
366
366
  key: 'testing/message/content',
367
367
  id: MenuId.TestMessageContent,
368
- description: ( localize(13427, "Context menu for the message in the results tree")),
368
+ description: ( localize(13430, "Context menu for the message in the results tree")),
369
369
  },
370
370
  {
371
371
  key: 'extension/context',
372
372
  id: MenuId.ExtensionContext,
373
- description: ( localize(13428, "The extension context menu"))
373
+ description: ( localize(13431, "The extension context menu"))
374
374
  },
375
375
  {
376
376
  key: 'timeline/title',
377
377
  id: MenuId.TimelineTitle,
378
- description: ( localize(13429, "The Timeline view title menu"))
378
+ description: ( localize(13432, "The Timeline view title menu"))
379
379
  },
380
380
  {
381
381
  key: 'timeline/item/context',
382
382
  id: MenuId.TimelineItemContext,
383
- description: ( localize(13430, "The Timeline view item context menu"))
383
+ description: ( localize(13433, "The Timeline view item context menu"))
384
384
  },
385
385
  {
386
386
  key: 'ports/item/context',
387
387
  id: MenuId.TunnelContext,
388
- description: ( localize(13431, "The Ports view item context menu"))
388
+ description: ( localize(13434, "The Ports view item context menu"))
389
389
  },
390
390
  {
391
391
  key: 'ports/item/origin/inline',
392
392
  id: MenuId.TunnelOriginInline,
393
- description: ( localize(13432, "The Ports view item origin inline menu"))
393
+ description: ( localize(13435, "The Ports view item origin inline menu"))
394
394
  },
395
395
  {
396
396
  key: 'ports/item/port/inline',
397
397
  id: MenuId.TunnelPortInline,
398
- description: ( localize(13433, "The Ports view item port inline menu"))
398
+ description: ( localize(13436, "The Ports view item port inline menu"))
399
399
  },
400
400
  {
401
401
  key: 'file/newFile',
402
402
  id: MenuId.NewFile,
403
403
  description: ( localize(
404
- 13434,
404
+ 13437,
405
405
  "The 'New File...' quick pick, shown on welcome page and File menu."
406
406
  )),
407
407
  supportsSubmenus: false,
@@ -409,89 +409,89 @@ const apiMenus = [
409
409
  {
410
410
  key: 'webview/context',
411
411
  id: MenuId.WebviewContext,
412
- description: ( localize(13435, "The webview context menu"))
412
+ description: ( localize(13438, "The webview context menu"))
413
413
  },
414
414
  {
415
415
  key: 'file/share',
416
416
  id: MenuId.MenubarShare,
417
- description: ( localize(13436, "Share submenu shown in the top level File menu.")),
417
+ description: ( localize(13439, "Share submenu shown in the top level File menu.")),
418
418
  proposed: 'contribShareMenu'
419
419
  },
420
420
  {
421
421
  key: 'editor/inlineCompletions/actions',
422
422
  id: MenuId.InlineCompletionsActions,
423
- description: ( localize(13437, "The actions shown when hovering on an inline completion")),
423
+ description: ( localize(13440, "The actions shown when hovering on an inline completion")),
424
424
  supportsSubmenus: false,
425
425
  proposed: 'inlineCompletionsAdditions'
426
426
  },
427
427
  {
428
428
  key: 'editor/content',
429
429
  id: MenuId.EditorContent,
430
- description: ( localize(13438, "The prominent button in an editor, overlays its content")),
430
+ description: ( localize(13441, "The prominent button in an editor, overlays its content")),
431
431
  proposed: 'contribEditorContentMenu'
432
432
  },
433
433
  {
434
434
  key: 'editor/lineNumber/context',
435
435
  id: MenuId.EditorLineNumberContext,
436
- description: ( localize(13439, "The contributed editor line number context menu"))
436
+ description: ( localize(13442, "The contributed editor line number context menu"))
437
437
  },
438
438
  {
439
439
  key: 'mergeEditor/result/title',
440
440
  id: MenuId.MergeInputResultToolbar,
441
- description: ( localize(13440, "The result toolbar of the merge editor")),
441
+ description: ( localize(13443, "The result toolbar of the merge editor")),
442
442
  proposed: 'contribMergeEditorMenus'
443
443
  },
444
444
  {
445
445
  key: 'multiDiffEditor/resource/title',
446
446
  id: MenuId.MultiDiffEditorFileToolbar,
447
- description: ( localize(13441, "The resource toolbar in the multi diff editor")),
447
+ description: ( localize(13444, "The resource toolbar in the multi diff editor")),
448
448
  proposed: 'contribMultiDiffEditorMenus'
449
449
  },
450
450
  {
451
451
  key: 'diffEditor/gutter/hunk',
452
452
  id: MenuId.DiffEditorHunkToolbar,
453
- description: ( localize(13442, "The gutter toolbar in the diff editor")),
453
+ description: ( localize(13445, "The gutter toolbar in the diff editor")),
454
454
  proposed: 'contribDiffEditorGutterToolBarMenus'
455
455
  },
456
456
  {
457
457
  key: 'diffEditor/gutter/selection',
458
458
  id: MenuId.DiffEditorSelectionToolbar,
459
- description: ( localize(13442, "The gutter toolbar in the diff editor")),
459
+ description: ( localize(13445, "The gutter toolbar in the diff editor")),
460
460
  proposed: 'contribDiffEditorGutterToolBarMenus'
461
461
  },
462
462
  {
463
463
  key: 'searchPanel/aiResults/commands',
464
464
  id: MenuId.SearchActionMenu,
465
465
  description: ( localize(
466
- 13443,
466
+ 13446,
467
467
  "The commands that will contribute to the menu rendered as buttons next to the AI search title"
468
468
  )),
469
469
  },
470
470
  {
471
471
  key: 'editor/context/chat',
472
472
  id: MenuId.ChatTextEditorMenu,
473
- description: ( localize(13444, "The Chat submenu in the text editor context menu.")),
473
+ description: ( localize(13447, "The Chat submenu in the text editor context menu.")),
474
474
  supportsSubmenus: false,
475
475
  proposed: 'chatParticipantPrivate'
476
476
  },
477
477
  {
478
478
  key: 'chat/chatSessions',
479
479
  id: MenuId.ChatSessionsMenu,
480
- description: ( localize(13445, "The Chat Sessions menu.")),
480
+ description: ( localize(13448, "The Chat Sessions menu.")),
481
481
  supportsSubmenus: false,
482
482
  proposed: 'chatSessionsProvider'
483
483
  },
484
484
  {
485
485
  key: 'chatSessions/newSession',
486
486
  id: MenuId.ChatSessionsCreateSubMenu,
487
- description: ( localize(13446, "Menu for new chat sessions.")),
487
+ description: ( localize(13449, "Menu for new chat sessions.")),
488
488
  supportsSubmenus: false,
489
489
  proposed: 'chatSessionsProvider'
490
490
  },
491
491
  {
492
492
  key: 'chat/multiDiff/context',
493
493
  id: MenuId.ChatMultiDiffContext,
494
- description: ( localize(13447, "The Chat Multi-Diff context menu.")),
494
+ description: ( localize(13450, "The Chat Multi-Diff context menu.")),
495
495
  supportsSubmenus: false,
496
496
  proposed: 'chatSessionsProvider',
497
497
  },
@@ -505,23 +505,23 @@ var schema;
505
505
  function isValidMenuItem(item, collector) {
506
506
  if (typeof item.command !== 'string') {
507
507
  collector.error(( localize(
508
- 13448,
508
+ 13451,
509
509
  "property `{0}` is mandatory and must be of type `string`",
510
510
  'command'
511
511
  )));
512
512
  return false;
513
513
  }
514
514
  if (item.alt && typeof item.alt !== 'string') {
515
- collector.error(( localize(13449, "property `{0}` can be omitted or must be of type `string`", 'alt')));
515
+ collector.error(( localize(13452, "property `{0}` can be omitted or must be of type `string`", 'alt')));
516
516
  return false;
517
517
  }
518
518
  if (item.when && typeof item.when !== 'string') {
519
- collector.error(( localize(13449, "property `{0}` can be omitted or must be of type `string`", 'when')));
519
+ collector.error(( localize(13452, "property `{0}` can be omitted or must be of type `string`", 'when')));
520
520
  return false;
521
521
  }
522
522
  if (item.group && typeof item.group !== 'string') {
523
523
  collector.error(( localize(
524
- 13449,
524
+ 13452,
525
525
  "property `{0}` can be omitted or must be of type `string`",
526
526
  'group'
527
527
  )));
@@ -533,19 +533,19 @@ var schema;
533
533
  function isValidSubmenuItem(item, collector) {
534
534
  if (typeof item.submenu !== 'string') {
535
535
  collector.error(( localize(
536
- 13448,
536
+ 13451,
537
537
  "property `{0}` is mandatory and must be of type `string`",
538
538
  'submenu'
539
539
  )));
540
540
  return false;
541
541
  }
542
542
  if (item.when && typeof item.when !== 'string') {
543
- collector.error(( localize(13449, "property `{0}` can be omitted or must be of type `string`", 'when')));
543
+ collector.error(( localize(13452, "property `{0}` can be omitted or must be of type `string`", 'when')));
544
544
  return false;
545
545
  }
546
546
  if (item.group && typeof item.group !== 'string') {
547
547
  collector.error(( localize(
548
- 13449,
548
+ 13452,
549
549
  "property `{0}` can be omitted or must be of type `string`",
550
550
  'group'
551
551
  )));
@@ -556,7 +556,7 @@ var schema;
556
556
  schema.isValidSubmenuItem = isValidSubmenuItem;
557
557
  function isValidItems(items, collector) {
558
558
  if (!Array.isArray(items)) {
559
- collector.error(( localize(13450, "submenu items must be an array")));
559
+ collector.error(( localize(13453, "submenu items must be an array")));
560
560
  return false;
561
561
  }
562
562
  for (const item of items) {
@@ -576,15 +576,15 @@ var schema;
576
576
  schema.isValidItems = isValidItems;
577
577
  function isValidSubmenu(submenu, collector) {
578
578
  if (typeof submenu !== 'object') {
579
- collector.error(( localize(13451, "submenu items must be an object")));
579
+ collector.error(( localize(13454, "submenu items must be an object")));
580
580
  return false;
581
581
  }
582
582
  if (typeof submenu.id !== 'string') {
583
- collector.error(( localize(13448, "property `{0}` is mandatory and must be of type `string`", 'id')));
583
+ collector.error(( localize(13451, "property `{0}` is mandatory and must be of type `string`", 'id')));
584
584
  return false;
585
585
  }
586
586
  if (typeof submenu.label !== 'string') {
587
- collector.error(( localize(13448, "property `{0}` is mandatory and must be of type `string`", 'label')));
587
+ collector.error(( localize(13451, "property `{0}` is mandatory and must be of type `string`", 'label')));
588
588
  return false;
589
589
  }
590
590
  return true;
@@ -596,24 +596,24 @@ var schema;
596
596
  properties: {
597
597
  command: {
598
598
  description: ( localize(
599
- 13452,
599
+ 13455,
600
600
  'Identifier of the command to execute. The command must be declared in the \'commands\'-section'
601
601
  )),
602
602
  type: 'string'
603
603
  },
604
604
  alt: {
605
605
  description: ( localize(
606
- 13453,
606
+ 13456,
607
607
  'Identifier of an alternative command to execute. The command must be declared in the \'commands\'-section'
608
608
  )),
609
609
  type: 'string'
610
610
  },
611
611
  when: {
612
- description: ( localize(13454, 'Condition which must be true to show this item')),
612
+ description: ( localize(13457, 'Condition which must be true to show this item')),
613
613
  type: 'string'
614
614
  },
615
615
  group: {
616
- description: ( localize(13455, 'Group into which this item belongs')),
616
+ description: ( localize(13458, 'Group into which this item belongs')),
617
617
  type: 'string'
618
618
  }
619
619
  }
@@ -623,15 +623,15 @@ var schema;
623
623
  required: ['submenu'],
624
624
  properties: {
625
625
  submenu: {
626
- description: ( localize(13456, 'Identifier of the submenu to display in this item.')),
626
+ description: ( localize(13459, 'Identifier of the submenu to display in this item.')),
627
627
  type: 'string'
628
628
  },
629
629
  when: {
630
- description: ( localize(13454, 'Condition which must be true to show this item')),
630
+ description: ( localize(13457, 'Condition which must be true to show this item')),
631
631
  type: 'string'
632
632
  },
633
633
  group: {
634
- description: ( localize(13455, 'Group into which this item belongs')),
634
+ description: ( localize(13458, 'Group into which this item belongs')),
635
635
  type: 'string'
636
636
  }
637
637
  }
@@ -641,16 +641,16 @@ var schema;
641
641
  required: ['id', 'label'],
642
642
  properties: {
643
643
  id: {
644
- description: ( localize(13457, 'Identifier of the menu to display as a submenu.')),
644
+ description: ( localize(13460, 'Identifier of the menu to display as a submenu.')),
645
645
  type: 'string'
646
646
  },
647
647
  label: {
648
- description: ( localize(13458, 'The label of the menu item which leads to this submenu.')),
648
+ description: ( localize(13461, 'The label of the menu item which leads to this submenu.')),
649
649
  type: 'string'
650
650
  },
651
651
  icon: {
652
652
  description: ( localize(
653
- 13459,
653
+ 13462,
654
654
  '(Optional) Icon which is used to represent the submenu in the UI. Either a file path, an object with file paths for dark and light themes, or a theme icon references, like "\\$(zap)"'
655
655
  )),
656
656
  anyOf: [{
@@ -660,11 +660,11 @@ var schema;
660
660
  type: 'object',
661
661
  properties: {
662
662
  light: {
663
- description: ( localize(13460, 'Icon path when a light theme is used')),
663
+ description: ( localize(13463, 'Icon path when a light theme is used')),
664
664
  type: 'string'
665
665
  },
666
666
  dark: {
667
- description: ( localize(13461, 'Icon path when a dark theme is used')),
667
+ description: ( localize(13464, 'Icon path when a dark theme is used')),
668
668
  type: 'string'
669
669
  }
670
670
  }
@@ -673,11 +673,11 @@ var schema;
673
673
  }
674
674
  };
675
675
  schema.menusContribution = {
676
- description: ( localize(13462, "Contributes menu items to the editor")),
676
+ description: ( localize(13465, "Contributes menu items to the editor")),
677
677
  type: 'object',
678
678
  properties: index(apiMenus, menu => menu.key, menu => ({
679
679
  markdownDescription: menu.proposed ? ( localize(
680
- 13463,
680
+ 13466,
681
681
  "Proposed API, requires `enabledApiProposal: [\"{0}\"]` - {1}",
682
682
  menu.proposed,
683
683
  menu.description
@@ -692,18 +692,18 @@ var schema;
692
692
  }
693
693
  };
694
694
  schema.submenusContribution = {
695
- description: ( localize(13464, "Contributes submenu items to the editor")),
695
+ description: ( localize(13467, "Contributes submenu items to the editor")),
696
696
  type: 'array',
697
697
  items: submenu
698
698
  };
699
699
  function isValidCommand(command, collector) {
700
700
  if (!command) {
701
- collector.error(( localize(13465, "expected non-empty value.")));
701
+ collector.error(( localize(13468, "expected non-empty value.")));
702
702
  return false;
703
703
  }
704
704
  if (isFalsyOrWhitespace(command.command)) {
705
705
  collector.error(( localize(
706
- 13448,
706
+ 13451,
707
707
  "property `{0}` is mandatory and must be of type `string`",
708
708
  'command'
709
709
  )));
@@ -717,7 +717,7 @@ var schema;
717
717
  }
718
718
  if (command.enablement && typeof command.enablement !== 'string') {
719
719
  collector.error(( localize(
720
- 13449,
720
+ 13452,
721
721
  "property `{0}` can be omitted or must be of type `string`",
722
722
  'precondition'
723
723
  )));
@@ -743,7 +743,7 @@ var schema;
743
743
  return true;
744
744
  }
745
745
  collector.error(( localize(
746
- 13466,
746
+ 13469,
747
747
  "property `icon` can be omitted or must be either a string or a literal like `{dark, light}`"
748
748
  )));
749
749
  return false;
@@ -751,7 +751,7 @@ var schema;
751
751
  function isValidLocalizedString(localized, collector, propertyName) {
752
752
  if (typeof localized === 'undefined') {
753
753
  collector.error(( localize(
754
- 13467,
754
+ 13470,
755
755
  "property `{0}` is mandatory and must be of type `string` or `object`",
756
756
  propertyName
757
757
  )));
@@ -759,7 +759,7 @@ var schema;
759
759
  }
760
760
  else if (typeof localized === 'string' && isFalsyOrWhitespace(localized)) {
761
761
  collector.error(( localize(
762
- 13448,
762
+ 13451,
763
763
  "property `{0}` is mandatory and must be of type `string`",
764
764
  propertyName
765
765
  )));
@@ -767,7 +767,7 @@ var schema;
767
767
  }
768
768
  else if (typeof localized !== 'string' && (isFalsyOrWhitespace(localized.original) || isFalsyOrWhitespace(localized.value))) {
769
769
  collector.error(( localize(
770
- 13468,
770
+ 13471,
771
771
  "properties `{0}` and `{1}` are mandatory and must be of type `string`",
772
772
  `${propertyName}.value`,
773
773
  `${propertyName}.original`
@@ -781,37 +781,37 @@ var schema;
781
781
  required: ['command', 'title'],
782
782
  properties: {
783
783
  command: {
784
- description: ( localize(13469, 'Identifier of the command to execute')),
784
+ description: ( localize(13472, 'Identifier of the command to execute')),
785
785
  type: 'string'
786
786
  },
787
787
  title: {
788
- description: ( localize(13470, 'Title by which the command is represented in the UI')),
788
+ description: ( localize(13473, 'Title by which the command is represented in the UI')),
789
789
  type: 'string'
790
790
  },
791
791
  shortTitle: {
792
792
  markdownDescription: ( localize(
793
- 13471,
793
+ 13474,
794
794
  '(Optional) Short title by which the command is represented in the UI. Menus pick either `title` or `shortTitle` depending on the context in which they show commands.'
795
795
  )),
796
796
  type: 'string'
797
797
  },
798
798
  category: {
799
799
  description: ( localize(
800
- 13472,
800
+ 13475,
801
801
  '(Optional) Category string by which the command is grouped in the UI'
802
802
  )),
803
803
  type: 'string'
804
804
  },
805
805
  enablement: {
806
806
  description: ( localize(
807
- 13473,
807
+ 13476,
808
808
  '(Optional) Condition which must be true to enable the command in the UI (menu and keybindings). Does not prevent executing the command by other means, like the `executeCommand`-api.'
809
809
  )),
810
810
  type: 'string'
811
811
  },
812
812
  icon: {
813
813
  description: ( localize(
814
- 13474,
814
+ 13477,
815
815
  '(Optional) Icon which is used to represent the command in the UI. Either a file path, an object with file paths for dark and light themes, or a theme icon references, like "\\$(zap)"'
816
816
  )),
817
817
  anyOf: [{
@@ -821,11 +821,11 @@ var schema;
821
821
  type: 'object',
822
822
  properties: {
823
823
  light: {
824
- description: ( localize(13475, 'Icon path when a light theme is used')),
824
+ description: ( localize(13478, 'Icon path when a light theme is used')),
825
825
  type: 'string'
826
826
  },
827
827
  dark: {
828
- description: ( localize(13476, 'Icon path when a dark theme is used')),
828
+ description: ( localize(13479, 'Icon path when a dark theme is used')),
829
829
  type: 'string'
830
830
  }
831
831
  }
@@ -834,7 +834,7 @@ var schema;
834
834
  }
835
835
  };
836
836
  schema.commandsContribution = {
837
- description: ( localize(13477, "Contributes commands to the command palette.")),
837
+ description: ( localize(13480, "Contributes commands to the command palette.")),
838
838
  oneOf: [
839
839
  commandType,
840
840
  {
@@ -878,7 +878,7 @@ commandsExtensionPoint.setHandler(extensions => {
878
878
  if (existingCmd) {
879
879
  if (existingCmd.source) {
880
880
  extension.collector.info(( localize(
881
- 13478,
881
+ 13481,
882
882
  "Command `{0}` already registered by {1} ({2})",
883
883
  userFriendlyCommand.command,
884
884
  existingCmd.source.title,
@@ -886,7 +886,7 @@ commandsExtensionPoint.setHandler(extensions => {
886
886
  )));
887
887
  }
888
888
  else {
889
- extension.collector.info(( localize(13479, "Command `{0}` already registered", userFriendlyCommand.command)));
889
+ extension.collector.info(( localize(13482, "Command `{0}` already registered", userFriendlyCommand.command)));
890
890
  }
891
891
  }
892
892
  _commandRegistrations.add(MenuRegistry.addCommand({
@@ -927,19 +927,19 @@ submenusExtensionPoint.setHandler(extensions => {
927
927
  continue;
928
928
  }
929
929
  if (!submenuInfo.id) {
930
- collector.warn(( localize(13480, "`{0}` is not a valid submenu identifier", submenuInfo.id)));
930
+ collector.warn(( localize(13483, "`{0}` is not a valid submenu identifier", submenuInfo.id)));
931
931
  continue;
932
932
  }
933
933
  if (( _submenus.has(submenuInfo.id))) {
934
934
  collector.info(( localize(
935
- 13481,
935
+ 13484,
936
936
  "The `{0}` submenu was already previously registered.",
937
937
  submenuInfo.id
938
938
  )));
939
939
  continue;
940
940
  }
941
941
  if (!submenuInfo.label) {
942
- collector.warn(( localize(13482, "`{0}` is not a valid submenu label", submenuInfo.label)));
942
+ collector.warn(( localize(13485, "`{0}` is not a valid submenu label", submenuInfo.label)));
943
943
  continue;
944
944
  }
945
945
  let absoluteIcon;
@@ -996,7 +996,7 @@ menusExtensionPoint.setHandler(extensions => {
996
996
  }
997
997
  if (menu.proposed && !isProposedApiEnabled(extension.description, menu.proposed)) {
998
998
  collector.error(( localize(
999
- 13483,
999
+ 13486,
1000
1000
  "{0} is a proposed menu identifier. It requires 'package.json#enabledApiProposals: [\"{1}\"]' and is only available when running out of dev or with the following command line switch: --enable-proposed-api {2}",
1001
1001
  entry[0],
1002
1002
  menu.proposed,
@@ -1011,7 +1011,7 @@ menusExtensionPoint.setHandler(extensions => {
1011
1011
  const alt = menuItem.alt && MenuRegistry.getCommand(menuItem.alt) || undefined;
1012
1012
  if (!command) {
1013
1013
  collector.error(( localize(
1014
- 13484,
1014
+ 13487,
1015
1015
  "Menu item references a command `{0}` which is not defined in the 'commands' section.",
1016
1016
  menuItem.command
1017
1017
  )));
@@ -1019,20 +1019,20 @@ menusExtensionPoint.setHandler(extensions => {
1019
1019
  }
1020
1020
  if (menuItem.alt && !alt) {
1021
1021
  collector.warn(( localize(
1022
- 13485,
1022
+ 13488,
1023
1023
  "Menu item references an alt-command `{0}` which is not defined in the 'commands' section.",
1024
1024
  menuItem.alt
1025
1025
  )));
1026
1026
  }
1027
1027
  if (menuItem.command === menuItem.alt) {
1028
- collector.info(( localize(13486, "Menu item references the same command as default and alt-command")));
1028
+ collector.info(( localize(13489, "Menu item references the same command as default and alt-command")));
1029
1029
  }
1030
1030
  item = { command, alt, group: undefined, order: undefined, when: undefined };
1031
1031
  }
1032
1032
  else {
1033
1033
  if (menu.supportsSubmenus === false) {
1034
1034
  collector.error(( localize(
1035
- 13487,
1035
+ 13490,
1036
1036
  "Menu item references a submenu for a menu which doesn't have submenu support."
1037
1037
  )));
1038
1038
  continue;
@@ -1040,7 +1040,7 @@ menusExtensionPoint.setHandler(extensions => {
1040
1040
  const submenu = _submenus.get(menuItem.submenu);
1041
1041
  if (!submenu) {
1042
1042
  collector.error(( localize(
1043
- 13488,
1043
+ 13491,
1044
1044
  "Menu item references a submenu `{0}` which is not defined in the 'submenus' section.",
1045
1045
  menuItem.submenu
1046
1046
  )));
@@ -1053,7 +1053,7 @@ menusExtensionPoint.setHandler(extensions => {
1053
1053
  }
1054
1054
  if (( submenuRegistrations.has(submenu.id.id))) {
1055
1055
  collector.warn(( localize(
1056
- 13489,
1056
+ 13492,
1057
1057
  "The `{0}` submenu was already contributed to the `{1}` menu.",
1058
1058
  menuItem.submenu,
1059
1059
  entry[0]
@@ -1075,7 +1075,7 @@ menusExtensionPoint.setHandler(extensions => {
1075
1075
  }
1076
1076
  if (menu.id === MenuId.ViewContainerTitle && !menuItem.when?.includes('viewContainer == workbench.view.debug')) {
1077
1077
  collector.error(( localize(
1078
- 13490,
1078
+ 13493,
1079
1079
  "The {0} menu contribution must check {1} in its {2} clause.",
1080
1080
  '`viewContainer/title`',
1081
1081
  '`viewContainer == workbench.view.debug`',
@@ -1162,10 +1162,10 @@ let CommandsTableRenderer = class CommandsTableRenderer extends Disposable {
1162
1162
  return { data: { headers: [], rows: [] }, dispose: () => { } };
1163
1163
  }
1164
1164
  const headers = [
1165
- ( localize(13491, "ID")),
1166
- ( localize(13492, "Title")),
1167
- ( localize(13493, "Keyboard Shortcuts")),
1168
- ( localize(13494, "Menu Contexts"))
1165
+ ( localize(13494, "ID")),
1166
+ ( localize(13495, "Title")),
1167
+ ( localize(13496, "Keyboard Shortcuts")),
1168
+ ( localize(13497, "Menu Contexts"))
1169
1169
  ];
1170
1170
  const rows = ( commands.sort((a, b) => a.id.localeCompare(b.id))
1171
1171
  .map(command => {
@@ -1205,7 +1205,7 @@ CommandsTableRenderer = ( __decorate([
1205
1205
  ], CommandsTableRenderer));
1206
1206
  ( Registry.as(Extensions.ExtensionFeaturesRegistry)).registerExtensionFeature({
1207
1207
  id: 'commands',
1208
- label: ( localize(13495, "Commands")),
1208
+ label: ( localize(13498, "Commands")),
1209
1209
  access: {
1210
1210
  canToggle: false,
1211
1211
  },
@@ -50,39 +50,39 @@ import { getAllUnboundCommands } from '@codingame/monaco-vscode-d609a7d3-bf87-55
50
50
  var WorkbenchKeybindingService_1;
51
51
  function isValidContributedKeyBinding(keyBinding, rejects) {
52
52
  if (!keyBinding) {
53
- rejects.push(( localize(13897, "expected non-empty value.")));
53
+ rejects.push(( localize(13900, "expected non-empty value.")));
54
54
  return false;
55
55
  }
56
56
  if (typeof keyBinding.command !== 'string') {
57
57
  rejects.push(( localize(
58
- 13898,
58
+ 13901,
59
59
  "property `{0}` is mandatory and must be of type `string`",
60
60
  'command'
61
61
  )));
62
62
  return false;
63
63
  }
64
64
  if (keyBinding.key && typeof keyBinding.key !== 'string') {
65
- rejects.push(( localize(13899, "property `{0}` can be omitted or must be of type `string`", 'key')));
65
+ rejects.push(( localize(13902, "property `{0}` can be omitted or must be of type `string`", 'key')));
66
66
  return false;
67
67
  }
68
68
  if (keyBinding.when && typeof keyBinding.when !== 'string') {
69
- rejects.push(( localize(13899, "property `{0}` can be omitted or must be of type `string`", 'when')));
69
+ rejects.push(( localize(13902, "property `{0}` can be omitted or must be of type `string`", 'when')));
70
70
  return false;
71
71
  }
72
72
  if (keyBinding.mac && typeof keyBinding.mac !== 'string') {
73
- rejects.push(( localize(13899, "property `{0}` can be omitted or must be of type `string`", 'mac')));
73
+ rejects.push(( localize(13902, "property `{0}` can be omitted or must be of type `string`", 'mac')));
74
74
  return false;
75
75
  }
76
76
  if (keyBinding.linux && typeof keyBinding.linux !== 'string') {
77
77
  rejects.push(( localize(
78
- 13899,
78
+ 13902,
79
79
  "property `{0}` can be omitted or must be of type `string`",
80
80
  'linux'
81
81
  )));
82
82
  return false;
83
83
  }
84
84
  if (keyBinding.win && typeof keyBinding.win !== 'string') {
85
- rejects.push(( localize(13899, "property `{0}` can be omitted or must be of type `string`", 'win')));
85
+ rejects.push(( localize(13902, "property `{0}` can be omitted or must be of type `string`", 'win')));
86
86
  return false;
87
87
  }
88
88
  return true;
@@ -93,33 +93,33 @@ const keybindingType = {
93
93
  required: ['command', 'key'],
94
94
  properties: {
95
95
  command: {
96
- description: ( localize(13900, 'Identifier of the command to run when keybinding is triggered.')),
96
+ description: ( localize(13903, 'Identifier of the command to run when keybinding is triggered.')),
97
97
  type: 'string'
98
98
  },
99
99
  args: {
100
- description: ( localize(13901, "Arguments to pass to the command to execute."))
100
+ description: ( localize(13904, "Arguments to pass to the command to execute."))
101
101
  },
102
102
  key: {
103
103
  description: ( localize(
104
- 13902,
104
+ 13905,
105
105
  'Key or key sequence (separate keys with plus-sign and sequences with space, e.g. Ctrl+O and Ctrl+L L for a chord).'
106
106
  )),
107
107
  type: 'string'
108
108
  },
109
109
  mac: {
110
- description: ( localize(13903, 'Mac specific key or key sequence.')),
110
+ description: ( localize(13906, 'Mac specific key or key sequence.')),
111
111
  type: 'string'
112
112
  },
113
113
  linux: {
114
- description: ( localize(13904, 'Linux specific key or key sequence.')),
114
+ description: ( localize(13907, 'Linux specific key or key sequence.')),
115
115
  type: 'string'
116
116
  },
117
117
  win: {
118
- description: ( localize(13905, 'Windows specific key or key sequence.')),
118
+ description: ( localize(13908, 'Windows specific key or key sequence.')),
119
119
  type: 'string'
120
120
  },
121
121
  when: {
122
- description: ( localize(13906, 'Condition when the key is active.')),
122
+ description: ( localize(13909, 'Condition when the key is active.')),
123
123
  type: 'string'
124
124
  },
125
125
  }
@@ -128,7 +128,7 @@ const keybindingsExtPoint = ExtensionsRegistry.registerExtensionPoint({
128
128
  extensionPoint: 'keybindings',
129
129
  deps: [commandsExtensionPoint],
130
130
  jsonSchema: {
131
- description: ( localize(13907, "Contributes keybindings.")),
131
+ description: ( localize(13910, "Contributes keybindings.")),
132
132
  oneOf: [
133
133
  keybindingType,
134
134
  {
@@ -516,7 +516,7 @@ let WorkbenchKeybindingService = WorkbenchKeybindingService_1 = class WorkbenchK
516
516
  }
517
517
  if (rejects.length > 0) {
518
518
  collector.error(( localize(
519
- 13908,
519
+ 13911,
520
520
  "Invalid `contributes.{0}`: {1}",
521
521
  keybindingsExtPoint.name,
522
522
  rejects.join('\n')
@@ -604,7 +604,7 @@ let WorkbenchKeybindingService = WorkbenchKeybindingService_1 = class WorkbenchK
604
604
  static _getAllCommandsAsComment(boundCommands) {
605
605
  const unboundCommands = getAllUnboundCommands(boundCommands);
606
606
  const pretty = unboundCommands.sort().join('\n// - ');
607
- return '// ' + ( localize(13909, "Here are other available commands: ")) + '\n// - ' + pretty;
607
+ return '// ' + ( localize(13912, "Here are other available commands: ")) + '\n// - ' + pretty;
608
608
  }
609
609
  mightProducePrintableCharacter(event) {
610
610
  if (event.ctrlKey || event.metaKey || event.altKey) {
@@ -729,7 +729,7 @@ class KeybindingsJsonSchema {
729
729
  this.schema = {
730
730
  id: KeybindingsJsonSchema.schemaId,
731
731
  type: 'array',
732
- title: ( localize(13910, "Keybindings configuration")),
732
+ title: ( localize(13913, "Keybindings configuration")),
733
733
  allowTrailingCommas: true,
734
734
  allowComments: true,
735
735
  definitions: {
@@ -753,7 +753,7 @@ class KeybindingsJsonSchema {
753
753
  'type': 'string',
754
754
  'enum': this.commandsEnum,
755
755
  'enumDescriptions': this.commandsEnumDescriptions,
756
- 'description': ( localize(13911, "Name of the command to execute")),
756
+ 'description': ( localize(13914, "Name of the command to execute")),
757
757
  },
758
758
  'commandType': {
759
759
  'anyOf': [
@@ -764,7 +764,7 @@ class KeybindingsJsonSchema {
764
764
  'type': 'string',
765
765
  'enum': this.removalCommandsEnum,
766
766
  'enumDescriptions': this.commandsEnumDescriptions,
767
- 'description': ( localize(13912, "Name of the command to remove keyboard shortcut for")),
767
+ 'description': ( localize(13915, "Name of the command to remove keyboard shortcut for")),
768
768
  },
769
769
  {
770
770
  'type': 'string'
@@ -782,7 +782,7 @@ class KeybindingsJsonSchema {
782
782
  'properties': {
783
783
  'key': {
784
784
  'type': 'string',
785
- 'description': ( localize(13913, "Key or key sequence (separated by space)")),
785
+ 'description': ( localize(13916, "Key or key sequence (separated by space)")),
786
786
  },
787
787
  'command': {
788
788
  'anyOf': [
@@ -795,7 +795,7 @@ class KeybindingsJsonSchema {
795
795
  'type': 'array'
796
796
  },
797
797
  'errorMessage': ( localize(
798
- 13914,
798
+ 13917,
799
799
  "Incorrect type. Expected \"{0}\". The field 'command' does not support running multiple commands. Use command 'runCommands' to pass it multiple commands to run.",
800
800
  'string'
801
801
  ))
@@ -811,10 +811,10 @@ class KeybindingsJsonSchema {
811
811
  },
812
812
  'when': {
813
813
  'type': 'string',
814
- 'description': ( localize(13915, "Condition when the key is active."))
814
+ 'description': ( localize(13918, "Condition when the key is active."))
815
815
  },
816
816
  'args': {
817
- 'description': ( localize(13916, "Arguments to pass to the command to execute."))
817
+ 'description': ( localize(13919, "Arguments to pass to the command to execute."))
818
818
  }
819
819
  },
820
820
  '$ref': '#/definitions/commandsSchemas'
@@ -483,12 +483,12 @@ const keyboardConfiguration = {
483
483
  'id': 'keyboard',
484
484
  'order': 15,
485
485
  'type': 'object',
486
- 'title': ( localize(13917, "Keyboard")),
486
+ 'title': ( localize(13920, "Keyboard")),
487
487
  'properties': {
488
488
  'keyboard.layout': {
489
489
  'type': 'string',
490
490
  'default': 'autodetect',
491
- 'description': ( localize(13918, "Control the keyboard layout used in web."))
491
+ 'description': ( localize(13921, "Control the keyboard layout used in web."))
492
492
  }
493
493
  }
494
494
  };