@codingame/monaco-vscode-keybindings-service-override 26.2.2 → 27.0.0

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": "26.2.2",
3
+ "version": "27.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - keybindings service-override",
6
6
  "keywords": [],
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-api": "26.2.2",
19
- "@codingame/monaco-vscode-files-service-override": "26.2.2"
18
+ "@codingame/monaco-vscode-api": "27.0.0",
19
+ "@codingame/monaco-vscode-files-service-override": "27.0.0"
20
20
  },
21
21
  "main": "index.js",
22
22
  "module": "index.js",
@@ -23,7 +23,7 @@ const keyboardConfiguration = {
23
23
  "id": "keyboard",
24
24
  "order": 15,
25
25
  "type": "object",
26
- "title": ( localize(1954, "Keyboard")),
26
+ "title": ( localize(1985, "Keyboard")),
27
27
  "properties": {
28
28
  "keyboard.dispatch": {
29
29
  scope: ConfigurationScope.APPLICATION,
@@ -31,7 +31,7 @@ const keyboardConfiguration = {
31
31
  enum: ["code", "keyCode"],
32
32
  default: "code",
33
33
  markdownDescription: ( localize(
34
- 1955,
34
+ 1986,
35
35
  "Controls the dispatching logic for key presses to use either `code` (recommended) or `keyCode`."
36
36
  )),
37
37
  included: OS === OperatingSystem.Macintosh || OS === OperatingSystem.Linux
@@ -40,7 +40,7 @@ const keyboardConfiguration = {
40
40
  scope: ConfigurationScope.APPLICATION,
41
41
  type: "boolean",
42
42
  default: false,
43
- markdownDescription: ( localize(1956, "Controls if the AltGraph+ modifier should be treated as Ctrl+Alt+.")),
43
+ markdownDescription: ( localize(1987, "Controls if the AltGraph+ modifier should be treated as Ctrl+Alt+.")),
44
44
  included: OS === OperatingSystem.Windows
45
45
  }
46
46
  }
@@ -10,10 +10,10 @@ class RunCommands extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: "runCommands",
13
- title: ( localize2(6781, "Run Commands")),
13
+ title: ( localize2(7389, "Run Commands")),
14
14
  f1: false,
15
15
  metadata: {
16
- description: ( localize(6782, "Run several commands")),
16
+ description: ( localize(7390, "Run several commands")),
17
17
  args: [{
18
18
  name: "args",
19
19
  schema: {
@@ -22,7 +22,7 @@ class RunCommands extends Action2 {
22
22
  properties: {
23
23
  commands: {
24
24
  type: "array",
25
- description: ( localize(6783, "Commands to run")),
25
+ description: ( localize(7391, "Commands to run")),
26
26
  items: {
27
27
  anyOf: [{
28
28
  $ref: "vscode://schemas/keybindings#/definitions/commandNames"
@@ -54,14 +54,14 @@ class RunCommands extends Action2 {
54
54
  const notificationService = accessor.get(INotificationService);
55
55
  if (!this._isCommandArgs(args)) {
56
56
  notificationService.error(( localize(
57
- 6784,
57
+ 7392,
58
58
  "'runCommands' has received an argument with incorrect type. Please, review the argument passed to the command."
59
59
  )));
60
60
  return;
61
61
  }
62
62
  if (args.commands.length === 0) {
63
63
  notificationService.warn(( localize(
64
- 6785,
64
+ 7393,
65
65
  "'runCommands' has not received commands to run. Did you forget to pass commands in the 'runCommands' argument?"
66
66
  )));
67
67
  return;
@@ -15,7 +15,7 @@ class ToggleKeybindingsLogAction extends Action2 {
15
15
  constructor() {
16
16
  super({
17
17
  id: "workbench.action.toggleKeybindingsLog",
18
- title: ( localize2(8998, "Toggle Keyboard Shortcuts Troubleshooting")),
18
+ title: ( localize2(9652, "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-ap
24
24
 
25
25
  var KeybindingEditorDecorationsRenderer_1;
26
26
  const NLS_KB_LAYOUT_ERROR_MESSAGE = ( localize(
27
- 10379,
27
+ 11124,
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 {
@@ -184,13 +184,13 @@ let KeybindingEditorDecorationsRenderer = KeybindingEditorDecorationsRenderer_1
184
184
  } else {
185
185
  if (usLabel && uiLabel !== usLabel) {
186
186
  msg = ( new MarkdownString(( localize(
187
- 10380,
187
+ 11125,
188
188
  "**{0}** for your current keyboard layout (**{1}** for US standard).",
189
189
  uiLabel,
190
190
  usLabel
191
191
  ))));
192
192
  } else {
193
- msg = ( new MarkdownString(( localize(10381, "**{0}** for your current keyboard layout.", uiLabel))));
193
+ msg = ( new MarkdownString(( localize(11126, "**{0}** for your current keyboard layout.", uiLabel))));
194
194
  }
195
195
  className = "keybindingInfo";
196
196
  overviewRulerColor = themeColorFromId(overviewRulerInfo);
@@ -20,190 +20,190 @@ import { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platf
20
20
  const apiMenus = [{
21
21
  key: "commandPalette",
22
22
  id: MenuId.CommandPalette,
23
- description: ( localize(14156, "The Command Palette")),
23
+ description: ( localize(15084, "The Command Palette")),
24
24
  supportsSubmenus: false
25
25
  }, {
26
26
  key: "touchBar",
27
27
  id: MenuId.TouchBarContext,
28
- description: ( localize(14157, "The touch bar (macOS only)")),
28
+ description: ( localize(15085, "The touch bar (macOS only)")),
29
29
  supportsSubmenus: false
30
30
  }, {
31
31
  key: "editor/title",
32
32
  id: MenuId.EditorTitle,
33
- description: ( localize(14158, "The editor title menu"))
33
+ description: ( localize(15086, "The editor title menu"))
34
34
  }, {
35
35
  key: "editor/title/run",
36
36
  id: MenuId.EditorTitleRun,
37
- description: ( localize(14159, "Run submenu inside the editor title menu"))
37
+ description: ( localize(15087, "Run submenu inside the editor title menu"))
38
38
  }, {
39
39
  key: "editor/context",
40
40
  id: MenuId.EditorContext,
41
- description: ( localize(14160, "The editor context menu"))
41
+ description: ( localize(15088, "The editor context menu"))
42
42
  }, {
43
43
  key: "editor/context/copy",
44
44
  id: MenuId.EditorContextCopy,
45
- description: ( localize(14161, "'Copy as' submenu in the editor context menu"))
45
+ description: ( localize(15089, "'Copy as' submenu in the editor context menu"))
46
46
  }, {
47
47
  key: "editor/context/share",
48
48
  id: MenuId.EditorContextShare,
49
- description: ( localize(14162, "'Share' submenu in the editor context menu")),
49
+ description: ( localize(15090, "'Share' submenu in the editor context menu")),
50
50
  proposed: "contribShareMenu"
51
51
  }, {
52
52
  key: "explorer/context",
53
53
  id: MenuId.ExplorerContext,
54
- description: ( localize(14163, "The file explorer context menu"))
54
+ description: ( localize(15091, "The file explorer context menu"))
55
55
  }, {
56
56
  key: "explorer/context/share",
57
57
  id: MenuId.ExplorerContextShare,
58
- description: ( localize(14164, "'Share' submenu in the file explorer context menu")),
58
+ description: ( localize(15092, "'Share' submenu in the file explorer context menu")),
59
59
  proposed: "contribShareMenu"
60
60
  }, {
61
61
  key: "editor/title/context",
62
62
  id: MenuId.EditorTitleContext,
63
- description: ( localize(14165, "The editor tabs context menu"))
63
+ description: ( localize(15093, "The editor tabs context menu"))
64
64
  }, {
65
65
  key: "editor/title/context/share",
66
66
  id: MenuId.EditorTitleContextShare,
67
- description: ( localize(14166, "'Share' submenu inside the editor title context menu")),
67
+ description: ( localize(15094, "'Share' submenu inside the editor title context menu")),
68
68
  proposed: "contribShareMenu"
69
69
  }, {
70
70
  key: "debug/callstack/context",
71
71
  id: MenuId.DebugCallStackContext,
72
- description: ( localize(14167, "The debug callstack view context menu"))
72
+ description: ( localize(15095, "The debug callstack view context menu"))
73
73
  }, {
74
74
  key: "debug/variables/context",
75
75
  id: MenuId.DebugVariablesContext,
76
- description: ( localize(14168, "The debug variables view context menu"))
76
+ description: ( localize(15096, "The debug variables view context menu"))
77
77
  }, {
78
78
  key: "debug/watch/context",
79
79
  id: MenuId.DebugWatchContext,
80
- description: ( localize(14169, "The debug watch view context menu"))
80
+ description: ( localize(15097, "The debug watch view context menu"))
81
81
  }, {
82
82
  key: "debug/toolBar",
83
83
  id: MenuId.DebugToolBar,
84
- description: ( localize(14170, "The debug toolbar menu"))
84
+ description: ( localize(15098, "The debug toolbar menu"))
85
85
  }, {
86
86
  key: "debug/createConfiguration",
87
87
  id: MenuId.DebugCreateConfiguration,
88
88
  proposed: "contribDebugCreateConfiguration",
89
- description: ( localize(14171, "The debug create configuration menu"))
89
+ description: ( localize(15099, "The debug create configuration menu"))
90
90
  }, {
91
91
  key: "notebook/variables/context",
92
92
  id: MenuId.NotebookVariablesContext,
93
- description: ( localize(14172, "The notebook variables view context menu"))
93
+ description: ( localize(15100, "The notebook variables view context menu"))
94
94
  }, {
95
95
  key: "menuBar/home",
96
96
  id: MenuId.MenubarHomeMenu,
97
- description: ( localize(14173, "The home indicator context menu (web only)")),
97
+ description: ( localize(15101, "The home indicator context menu (web only)")),
98
98
  proposed: "contribMenuBarHome",
99
99
  supportsSubmenus: false
100
100
  }, {
101
101
  key: "menuBar/edit/copy",
102
102
  id: MenuId.MenubarCopy,
103
- description: ( localize(14174, "'Copy as' submenu in the top level Edit menu"))
103
+ description: ( localize(15102, "'Copy as' submenu in the top level Edit menu"))
104
104
  }, {
105
105
  key: "scm/title",
106
106
  id: MenuId.SCMTitle,
107
- description: ( localize(14175, "The Source Control title menu"))
107
+ description: ( localize(15103, "The Source Control title menu"))
108
108
  }, {
109
109
  key: "scm/sourceControl",
110
110
  id: MenuId.SCMSourceControl,
111
- description: ( localize(14176, "The Source Control menu"))
111
+ description: ( localize(15104, "The Source Control menu"))
112
112
  }, {
113
113
  key: "scm/repositories/title",
114
114
  id: MenuId.SCMSourceControlTitle,
115
- description: ( localize(14177, "The Source Control Repositories title menu")),
115
+ description: ( localize(15105, "The Source Control Repositories title menu")),
116
116
  proposed: "contribSourceControlTitleMenu"
117
117
  }, {
118
118
  key: "scm/repository",
119
119
  id: MenuId.SCMSourceControlInline,
120
- description: ( localize(14178, "The Source Control repository menu"))
120
+ description: ( localize(15106, "The Source Control repository menu"))
121
121
  }, {
122
122
  key: "scm/resourceState/context",
123
123
  id: MenuId.SCMResourceContext,
124
- description: ( localize(14179, "The Source Control resource state context menu"))
124
+ description: ( localize(15107, "The Source Control resource state context menu"))
125
125
  }, {
126
126
  key: "scm/resourceFolder/context",
127
127
  id: MenuId.SCMResourceFolderContext,
128
- description: ( localize(14180, "The Source Control resource folder context menu"))
128
+ description: ( localize(15108, "The Source Control resource folder context menu"))
129
129
  }, {
130
130
  key: "scm/resourceGroup/context",
131
131
  id: MenuId.SCMResourceGroupContext,
132
- description: ( localize(14181, "The Source Control resource group context menu"))
132
+ description: ( localize(15109, "The Source Control resource group context menu"))
133
133
  }, {
134
134
  key: "scm/change/title",
135
135
  id: MenuId.SCMChangeContext,
136
- description: ( localize(14182, "The Source Control inline change menu"))
136
+ description: ( localize(15110, "The Source Control inline change menu"))
137
137
  }, {
138
138
  key: "scm/inputBox",
139
139
  id: MenuId.SCMInputBox,
140
- description: ( localize(14183, "The Source Control input box menu")),
140
+ description: ( localize(15111, "The Source Control input box menu")),
141
141
  proposed: "contribSourceControlInputBoxMenu"
142
142
  }, {
143
143
  key: "scm/history/title",
144
144
  id: MenuId.SCMHistoryTitle,
145
- description: ( localize(14184, "The Source Control History title menu")),
145
+ description: ( localize(15112, "The Source Control History title menu")),
146
146
  proposed: "contribSourceControlHistoryTitleMenu"
147
147
  }, {
148
148
  key: "scm/historyItem/context",
149
149
  id: MenuId.SCMHistoryItemContext,
150
- description: ( localize(14185, "The Source Control history item context menu")),
150
+ description: ( localize(15113, "The Source Control history item context menu")),
151
151
  proposed: "contribSourceControlHistoryItemMenu"
152
152
  }, {
153
153
  key: "scm/historyItemRef/context",
154
154
  id: MenuId.SCMHistoryItemRefContext,
155
- description: ( localize(14186, "The Source Control history item reference context menu")),
155
+ description: ( localize(15114, "The Source Control history item reference context menu")),
156
156
  proposed: "contribSourceControlHistoryItemMenu"
157
157
  }, {
158
158
  key: "scm/artifactGroup/context",
159
159
  id: MenuId.SCMArtifactGroupContext,
160
- description: ( localize(14187, "The Source Control artifact group context menu")),
160
+ description: ( localize(15115, "The Source Control artifact group context menu")),
161
161
  proposed: "contribSourceControlArtifactGroupMenu"
162
162
  }, {
163
163
  key: "scm/artifact/context",
164
164
  id: MenuId.SCMArtifactContext,
165
- description: ( localize(14188, "The Source Control artifact context menu")),
165
+ description: ( localize(15116, "The Source Control artifact context menu")),
166
166
  proposed: "contribSourceControlArtifactMenu"
167
167
  }, {
168
168
  key: "statusBar/remoteIndicator",
169
169
  id: MenuId.StatusBarRemoteIndicatorMenu,
170
- description: ( localize(14189, "The remote indicator menu in the status bar")),
170
+ description: ( localize(15117, "The remote indicator menu in the status bar")),
171
171
  supportsSubmenus: false
172
172
  }, {
173
173
  key: "terminal/context",
174
174
  id: MenuId.TerminalInstanceContext,
175
- description: ( localize(14190, "The terminal context menu"))
175
+ description: ( localize(15118, "The terminal context menu"))
176
176
  }, {
177
177
  key: "terminal/title/context",
178
178
  id: MenuId.TerminalTabContext,
179
- description: ( localize(14191, "The terminal tabs context menu"))
179
+ description: ( localize(15119, "The terminal tabs context menu"))
180
180
  }, {
181
181
  key: "view/title",
182
182
  id: MenuId.ViewTitle,
183
- description: ( localize(14192, "The contributed view title menu"))
183
+ description: ( localize(15120, "The contributed view title menu"))
184
184
  }, {
185
185
  key: "viewContainer/title",
186
186
  id: MenuId.ViewContainerTitle,
187
- description: ( localize(14193, "The contributed view container title menu")),
187
+ description: ( localize(15121, "The contributed view container title menu")),
188
188
  proposed: "contribViewContainerTitle"
189
189
  }, {
190
190
  key: "view/item/context",
191
191
  id: MenuId.ViewItemContext,
192
- description: ( localize(14194, "The contributed view item context menu"))
192
+ description: ( localize(15122, "The contributed view item context menu"))
193
193
  }, {
194
194
  key: "comments/comment/editorActions",
195
195
  id: MenuId.CommentEditorActions,
196
- description: ( localize(14195, "The contributed comment editor actions")),
196
+ description: ( localize(15123, "The contributed comment editor actions")),
197
197
  proposed: "contribCommentEditorActionsMenu"
198
198
  }, {
199
199
  key: "comments/commentThread/title",
200
200
  id: MenuId.CommentThreadTitle,
201
- description: ( localize(14196, "The contributed comment thread title menu"))
201
+ description: ( localize(15124, "The contributed comment thread title menu"))
202
202
  }, {
203
203
  key: "comments/commentThread/context",
204
204
  id: MenuId.CommentThreadActions,
205
205
  description: ( localize(
206
- 14197,
206
+ 15125,
207
207
  "The contributed comment thread context menu, rendered as buttons below the comment editor"
208
208
  )),
209
209
  supportsSubmenus: false
@@ -211,7 +211,7 @@ const apiMenus = [{
211
211
  key: "comments/commentThread/additionalActions",
212
212
  id: MenuId.CommentThreadAdditionalActions,
213
213
  description: ( localize(
214
- 14197,
214
+ 15125,
215
215
  "The contributed comment thread context menu, rendered as buttons below the comment editor"
216
216
  )),
217
217
  supportsSubmenus: true,
@@ -220,19 +220,19 @@ const apiMenus = [{
220
220
  key: "comments/commentThread/title/context",
221
221
  id: MenuId.CommentThreadTitleContext,
222
222
  description: ( localize(
223
- 14198,
223
+ 15126,
224
224
  "The contributed comment thread title's peek context menu, rendered as a right click menu on the comment thread's peek title."
225
225
  )),
226
226
  proposed: "contribCommentPeekContext"
227
227
  }, {
228
228
  key: "comments/comment/title",
229
229
  id: MenuId.CommentTitle,
230
- description: ( localize(14199, "The contributed comment title menu"))
230
+ description: ( localize(15127, "The contributed comment title menu"))
231
231
  }, {
232
232
  key: "comments/comment/context",
233
233
  id: MenuId.CommentActions,
234
234
  description: ( localize(
235
- 14200,
235
+ 15128,
236
236
  "The contributed comment context menu, rendered as buttons below the comment editor"
237
237
  )),
238
238
  supportsSubmenus: false
@@ -240,203 +240,203 @@ const apiMenus = [{
240
240
  key: "comments/commentThread/comment/context",
241
241
  id: MenuId.CommentThreadCommentContext,
242
242
  description: ( localize(
243
- 14201,
243
+ 15129,
244
244
  "The contributed comment context menu, rendered as a right click menu on the an individual comment in the comment thread's peek view."
245
245
  )),
246
246
  proposed: "contribCommentPeekContext"
247
247
  }, {
248
248
  key: "commentsView/commentThread/context",
249
249
  id: MenuId.CommentsViewThreadActions,
250
- description: ( localize(14202, "The contributed comment thread context menu in the comments view")),
250
+ description: ( localize(15130, "The contributed comment thread context menu in the comments view")),
251
251
  proposed: "contribCommentsViewThreadMenus"
252
252
  }, {
253
253
  key: "notebook/toolbar",
254
254
  id: MenuId.NotebookToolbar,
255
- description: ( localize(14203, "The contributed notebook toolbar menu"))
255
+ description: ( localize(15131, "The contributed notebook toolbar menu"))
256
256
  }, {
257
257
  key: "notebook/kernelSource",
258
258
  id: MenuId.NotebookKernelSource,
259
- description: ( localize(14204, "The contributed notebook kernel sources menu")),
259
+ description: ( localize(15132, "The contributed notebook kernel sources menu")),
260
260
  proposed: "notebookKernelSource"
261
261
  }, {
262
262
  key: "notebook/cell/title",
263
263
  id: MenuId.NotebookCellTitle,
264
- description: ( localize(14205, "The contributed notebook cell title menu"))
264
+ description: ( localize(15133, "The contributed notebook cell title menu"))
265
265
  }, {
266
266
  key: "notebook/cell/execute",
267
267
  id: MenuId.NotebookCellExecute,
268
- description: ( localize(14206, "The contributed notebook cell execution menu"))
268
+ description: ( localize(15134, "The contributed notebook cell execution menu"))
269
269
  }, {
270
270
  key: "interactive/toolbar",
271
271
  id: MenuId.InteractiveToolbar,
272
- description: ( localize(14207, "The contributed interactive toolbar menu"))
272
+ description: ( localize(15135, "The contributed interactive toolbar menu"))
273
273
  }, {
274
274
  key: "interactive/cell/title",
275
275
  id: MenuId.InteractiveCellTitle,
276
- description: ( localize(14208, "The contributed interactive cell title menu"))
276
+ description: ( localize(15136, "The contributed interactive cell title menu"))
277
277
  }, {
278
278
  key: "issue/reporter",
279
279
  id: MenuId.IssueReporter,
280
- description: ( localize(14209, "The contributed issue reporter menu"))
280
+ description: ( localize(15137, "The contributed issue reporter menu"))
281
281
  }, {
282
282
  key: "testing/item/context",
283
283
  id: MenuId.TestItem,
284
- description: ( localize(14210, "The contributed test item menu"))
284
+ description: ( localize(15138, "The contributed test item menu"))
285
285
  }, {
286
286
  key: "testing/item/gutter",
287
287
  id: MenuId.TestItemGutter,
288
- description: ( localize(14211, "The menu for a gutter decoration for a test item"))
288
+ description: ( localize(15139, "The menu for a gutter decoration for a test item"))
289
289
  }, {
290
290
  key: "testing/profiles/context",
291
291
  id: MenuId.TestProfilesContext,
292
- description: ( localize(14212, "The menu for configuring testing profiles."))
292
+ description: ( localize(15140, "The menu for configuring testing profiles."))
293
293
  }, {
294
294
  key: "testing/item/result",
295
295
  id: MenuId.TestPeekElement,
296
- description: ( localize(14213, "The menu for an item in the Test Results view or peek."))
296
+ description: ( localize(15141, "The menu for an item in the Test Results view or peek."))
297
297
  }, {
298
298
  key: "testing/message/context",
299
299
  id: MenuId.TestMessageContext,
300
300
  description: ( localize(
301
- 14214,
301
+ 15142,
302
302
  "A prominent button overlaying editor content where the message is displayed"
303
303
  ))
304
304
  }, {
305
305
  key: "testing/message/content",
306
306
  id: MenuId.TestMessageContent,
307
- description: ( localize(14215, "Context menu for the message in the results tree"))
307
+ description: ( localize(15143, "Context menu for the message in the results tree"))
308
308
  }, {
309
309
  key: "extension/context",
310
310
  id: MenuId.ExtensionContext,
311
- description: ( localize(14216, "The extension context menu"))
311
+ description: ( localize(15144, "The extension context menu"))
312
312
  }, {
313
313
  key: "timeline/title",
314
314
  id: MenuId.TimelineTitle,
315
- description: ( localize(14217, "The Timeline view title menu"))
315
+ description: ( localize(15145, "The Timeline view title menu"))
316
316
  }, {
317
317
  key: "timeline/item/context",
318
318
  id: MenuId.TimelineItemContext,
319
- description: ( localize(14218, "The Timeline view item context menu"))
319
+ description: ( localize(15146, "The Timeline view item context menu"))
320
320
  }, {
321
321
  key: "ports/item/context",
322
322
  id: MenuId.TunnelContext,
323
- description: ( localize(14219, "The Ports view item context menu"))
323
+ description: ( localize(15147, "The Ports view item context menu"))
324
324
  }, {
325
325
  key: "ports/item/origin/inline",
326
326
  id: MenuId.TunnelOriginInline,
327
- description: ( localize(14220, "The Ports view item origin inline menu"))
327
+ description: ( localize(15148, "The Ports view item origin inline menu"))
328
328
  }, {
329
329
  key: "ports/item/port/inline",
330
330
  id: MenuId.TunnelPortInline,
331
- description: ( localize(14221, "The Ports view item port inline menu"))
331
+ description: ( localize(15149, "The Ports view item port inline menu"))
332
332
  }, {
333
333
  key: "file/newFile",
334
334
  id: MenuId.NewFile,
335
335
  description: ( localize(
336
- 14222,
336
+ 15150,
337
337
  "The 'New File...' quick pick, shown on welcome page and File menu."
338
338
  )),
339
339
  supportsSubmenus: false
340
340
  }, {
341
341
  key: "webview/context",
342
342
  id: MenuId.WebviewContext,
343
- description: ( localize(14223, "The webview context menu"))
343
+ description: ( localize(15151, "The webview context menu"))
344
344
  }, {
345
345
  key: "file/share",
346
346
  id: MenuId.MenubarShare,
347
- description: ( localize(14224, "Share submenu shown in the top level File menu.")),
347
+ description: ( localize(15152, "Share submenu shown in the top level File menu.")),
348
348
  proposed: "contribShareMenu"
349
349
  }, {
350
350
  key: "editor/inlineCompletions/actions",
351
351
  id: MenuId.InlineCompletionsActions,
352
- description: ( localize(14225, "The actions shown when hovering on an inline completion")),
352
+ description: ( localize(15153, "The actions shown when hovering on an inline completion")),
353
353
  supportsSubmenus: false,
354
354
  proposed: "inlineCompletionsAdditions"
355
355
  }, {
356
356
  key: "editor/content",
357
357
  id: MenuId.EditorContent,
358
- description: ( localize(14226, "The prominent button in an editor, overlays its content")),
358
+ description: ( localize(15154, "The prominent button in an editor, overlays its content")),
359
359
  proposed: "contribEditorContentMenu"
360
360
  }, {
361
361
  key: "editor/lineNumber/context",
362
362
  id: MenuId.EditorLineNumberContext,
363
- description: ( localize(14227, "The contributed editor line number context menu"))
363
+ description: ( localize(15155, "The contributed editor line number context menu"))
364
364
  }, {
365
365
  key: "mergeEditor/result/title",
366
366
  id: MenuId.MergeInputResultToolbar,
367
- description: ( localize(14228, "The result toolbar of the merge editor")),
367
+ description: ( localize(15156, "The result toolbar of the merge editor")),
368
368
  proposed: "contribMergeEditorMenus"
369
369
  }, {
370
370
  key: "multiDiffEditor/content",
371
371
  id: MenuId.MultiDiffEditorContent,
372
- description: ( localize(14229, "A prominent button overlaying the multi diff editor")),
372
+ description: ( localize(15157, "A prominent button overlaying the multi diff editor")),
373
373
  proposed: "contribEditorContentMenu"
374
374
  }, {
375
375
  key: "multiDiffEditor/resource/title",
376
376
  id: MenuId.MultiDiffEditorFileToolbar,
377
- description: ( localize(14230, "The resource toolbar in the multi diff editor")),
377
+ description: ( localize(15158, "The resource toolbar in the multi diff editor")),
378
378
  proposed: "contribMultiDiffEditorMenus"
379
379
  }, {
380
380
  key: "diffEditor/gutter/hunk",
381
381
  id: MenuId.DiffEditorHunkToolbar,
382
- description: ( localize(14231, "The gutter toolbar in the diff editor")),
382
+ description: ( localize(15159, "The gutter toolbar in the diff editor")),
383
383
  proposed: "contribDiffEditorGutterToolBarMenus"
384
384
  }, {
385
385
  key: "diffEditor/gutter/selection",
386
386
  id: MenuId.DiffEditorSelectionToolbar,
387
- description: ( localize(14231, "The gutter toolbar in the diff editor")),
387
+ description: ( localize(15159, "The gutter toolbar in the diff editor")),
388
388
  proposed: "contribDiffEditorGutterToolBarMenus"
389
389
  }, {
390
390
  key: "searchPanel/aiResults/commands",
391
391
  id: MenuId.SearchActionMenu,
392
392
  description: ( localize(
393
- 14232,
393
+ 15160,
394
394
  "The commands that will contribute to the menu rendered as buttons next to the AI search title"
395
395
  ))
396
396
  }, {
397
397
  key: "editor/context/chat",
398
398
  id: MenuId.ChatTextEditorMenu,
399
- description: ( localize(14233, "The Chat submenu in the text editor context menu.")),
399
+ description: ( localize(15161, "The Chat submenu in the text editor context menu.")),
400
400
  supportsSubmenus: false,
401
401
  proposed: "chatParticipantPrivate"
402
402
  }, {
403
403
  key: "chat/input/editing/sessionToolbar",
404
404
  id: MenuId.ChatEditingSessionChangesToolbar,
405
- description: ( localize(14234, "The Chat Editing widget toolbar menu for session changes.")),
405
+ description: ( localize(15162, "The Chat Editing widget toolbar menu for session changes.")),
406
406
  proposed: "chatSessionsProvider"
407
407
  }, {
408
408
  key: "chat/chatSessions",
409
409
  id: MenuId.AgentSessionsContext,
410
- description: ( localize(14235, "The Chat Sessions menu.")),
410
+ description: ( localize(15163, "The Chat Sessions menu.")),
411
411
  supportsSubmenus: false,
412
412
  proposed: "chatSessionsProvider"
413
413
  }, {
414
414
  key: "chatSessions/newSession",
415
415
  id: MenuId.AgentSessionsCreateSubMenu,
416
- description: ( localize(14236, "Menu for new chat sessions.")),
416
+ description: ( localize(15164, "Menu for new chat sessions.")),
417
417
  supportsSubmenus: false,
418
418
  proposed: "chatSessionsProvider"
419
419
  }, {
420
420
  key: "chat/multiDiff/context",
421
421
  id: MenuId.ChatMultiDiffContext,
422
- description: ( localize(14237, "The Chat Multi-Diff context menu.")),
422
+ description: ( localize(15165, "The Chat Multi-Diff context menu.")),
423
423
  supportsSubmenus: false,
424
424
  proposed: "chatSessionsProvider"
425
425
  }, {
426
426
  key: "chat/editor/inlineGutter",
427
- id: MenuId.ChatEditorInlineGutter,
428
- description: ( localize(14238, "The inline gutter menu in the chat editor.")),
427
+ id: MenuId.ChatEditorInlineMenu,
428
+ description: ( localize(15166, "The inline gutter menu in the chat editor.")),
429
429
  supportsSubmenus: false,
430
430
  proposed: "contribChatEditorInlineGutterMenu"
431
431
  }, {
432
432
  key: "chat/contextUsage/actions",
433
433
  id: MenuId.ChatContextUsageActions,
434
- description: ( localize(14239, "Actions in the chat context usage details popup.")),
434
+ description: ( localize(15167, "Actions in the chat context usage details popup.")),
435
435
  proposed: "chatParticipantAdditions"
436
436
  }, {
437
437
  key: "chat/newSession",
438
438
  id: MenuId.ChatNewMenu,
439
- description: ( localize(14240, "The Chat new session menu.")),
439
+ description: ( localize(15168, "The Chat new session menu.")),
440
440
  proposed: "chatSessionsProvider"
441
441
  }];
442
442
  var schema;
@@ -448,23 +448,23 @@ var schema;
448
448
  function isValidMenuItem(item, collector) {
449
449
  if (typeof item.command !== "string") {
450
450
  collector.error(( localize(
451
- 14241,
451
+ 15169,
452
452
  "property `{0}` is mandatory and must be of type `string`",
453
453
  "command"
454
454
  )));
455
455
  return false;
456
456
  }
457
457
  if (item.alt && typeof item.alt !== "string") {
458
- collector.error(( localize(14242, "property `{0}` can be omitted or must be of type `string`", "alt")));
458
+ collector.error(( localize(15170, "property `{0}` can be omitted or must be of type `string`", "alt")));
459
459
  return false;
460
460
  }
461
461
  if (item.when && typeof item.when !== "string") {
462
- collector.error(( localize(14242, "property `{0}` can be omitted or must be of type `string`", "when")));
462
+ collector.error(( localize(15170, "property `{0}` can be omitted or must be of type `string`", "when")));
463
463
  return false;
464
464
  }
465
465
  if (item.group && typeof item.group !== "string") {
466
466
  collector.error(( localize(
467
- 14242,
467
+ 15170,
468
468
  "property `{0}` can be omitted or must be of type `string`",
469
469
  "group"
470
470
  )));
@@ -476,19 +476,19 @@ var schema;
476
476
  function isValidSubmenuItem(item, collector) {
477
477
  if (typeof item.submenu !== "string") {
478
478
  collector.error(( localize(
479
- 14241,
479
+ 15169,
480
480
  "property `{0}` is mandatory and must be of type `string`",
481
481
  "submenu"
482
482
  )));
483
483
  return false;
484
484
  }
485
485
  if (item.when && typeof item.when !== "string") {
486
- collector.error(( localize(14242, "property `{0}` can be omitted or must be of type `string`", "when")));
486
+ collector.error(( localize(15170, "property `{0}` can be omitted or must be of type `string`", "when")));
487
487
  return false;
488
488
  }
489
489
  if (item.group && typeof item.group !== "string") {
490
490
  collector.error(( localize(
491
- 14242,
491
+ 15170,
492
492
  "property `{0}` can be omitted or must be of type `string`",
493
493
  "group"
494
494
  )));
@@ -499,7 +499,7 @@ var schema;
499
499
  schema.isValidSubmenuItem = isValidSubmenuItem;
500
500
  function isValidItems(items, collector) {
501
501
  if (!Array.isArray(items)) {
502
- collector.error(( localize(14243, "submenu items must be an array")));
502
+ collector.error(( localize(15171, "submenu items must be an array")));
503
503
  return false;
504
504
  }
505
505
  for (const item of items) {
@@ -518,15 +518,15 @@ var schema;
518
518
  schema.isValidItems = isValidItems;
519
519
  function isValidSubmenu(submenu, collector) {
520
520
  if (typeof submenu !== "object") {
521
- collector.error(( localize(14244, "submenu items must be an object")));
521
+ collector.error(( localize(15172, "submenu items must be an object")));
522
522
  return false;
523
523
  }
524
524
  if (typeof submenu.id !== "string") {
525
- collector.error(( localize(14241, "property `{0}` is mandatory and must be of type `string`", "id")));
525
+ collector.error(( localize(15169, "property `{0}` is mandatory and must be of type `string`", "id")));
526
526
  return false;
527
527
  }
528
528
  if (typeof submenu.label !== "string") {
529
- collector.error(( localize(14241, "property `{0}` is mandatory and must be of type `string`", "label")));
529
+ collector.error(( localize(15169, "property `{0}` is mandatory and must be of type `string`", "label")));
530
530
  return false;
531
531
  }
532
532
  return true;
@@ -538,24 +538,24 @@ var schema;
538
538
  properties: {
539
539
  command: {
540
540
  description: ( localize(
541
- 14245,
541
+ 15173,
542
542
  "Identifier of the command to execute. The command must be declared in the 'commands'-section"
543
543
  )),
544
544
  type: "string"
545
545
  },
546
546
  alt: {
547
547
  description: ( localize(
548
- 14246,
548
+ 15174,
549
549
  "Identifier of an alternative command to execute. The command must be declared in the 'commands'-section"
550
550
  )),
551
551
  type: "string"
552
552
  },
553
553
  when: {
554
- description: ( localize(14247, "Condition which must be true to show this item")),
554
+ description: ( localize(15175, "Condition which must be true to show this item")),
555
555
  type: "string"
556
556
  },
557
557
  group: {
558
- description: ( localize(14248, "Group into which this item belongs")),
558
+ description: ( localize(15176, "Group into which this item belongs")),
559
559
  type: "string"
560
560
  }
561
561
  }
@@ -565,15 +565,15 @@ var schema;
565
565
  required: ["submenu"],
566
566
  properties: {
567
567
  submenu: {
568
- description: ( localize(14249, "Identifier of the submenu to display in this item.")),
568
+ description: ( localize(15177, "Identifier of the submenu to display in this item.")),
569
569
  type: "string"
570
570
  },
571
571
  when: {
572
- description: ( localize(14247, "Condition which must be true to show this item")),
572
+ description: ( localize(15175, "Condition which must be true to show this item")),
573
573
  type: "string"
574
574
  },
575
575
  group: {
576
- description: ( localize(14248, "Group into which this item belongs")),
576
+ description: ( localize(15176, "Group into which this item belongs")),
577
577
  type: "string"
578
578
  }
579
579
  }
@@ -583,16 +583,16 @@ var schema;
583
583
  required: ["id", "label"],
584
584
  properties: {
585
585
  id: {
586
- description: ( localize(14250, "Identifier of the menu to display as a submenu.")),
586
+ description: ( localize(15178, "Identifier of the menu to display as a submenu.")),
587
587
  type: "string"
588
588
  },
589
589
  label: {
590
- description: ( localize(14251, "The label of the menu item which leads to this submenu.")),
590
+ description: ( localize(15179, "The label of the menu item which leads to this submenu.")),
591
591
  type: "string"
592
592
  },
593
593
  icon: {
594
594
  description: ( localize(
595
- 14252,
595
+ 15180,
596
596
  "(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)\""
597
597
  )),
598
598
  anyOf: [{
@@ -601,11 +601,11 @@ var schema;
601
601
  type: "object",
602
602
  properties: {
603
603
  light: {
604
- description: ( localize(14253, "Icon path when a light theme is used")),
604
+ description: ( localize(15181, "Icon path when a light theme is used")),
605
605
  type: "string"
606
606
  },
607
607
  dark: {
608
- description: ( localize(14254, "Icon path when a dark theme is used")),
608
+ description: ( localize(15182, "Icon path when a dark theme is used")),
609
609
  type: "string"
610
610
  }
611
611
  }
@@ -614,11 +614,11 @@ var schema;
614
614
  }
615
615
  };
616
616
  schema.menusContribution = {
617
- description: ( localize(14255, "Contributes menu items to the editor")),
617
+ description: ( localize(15183, "Contributes menu items to the editor")),
618
618
  type: "object",
619
619
  properties: index(apiMenus, menu => menu.key, menu => ({
620
620
  markdownDescription: menu.proposed ? ( localize(
621
- 14256,
621
+ 15184,
622
622
  "Proposed API, requires `enabledApiProposal: [\"{0}\"]` - {1}",
623
623
  menu.proposed,
624
624
  menu.description
@@ -637,18 +637,18 @@ var schema;
637
637
  }
638
638
  };
639
639
  schema.submenusContribution = {
640
- description: ( localize(14257, "Contributes submenu items to the editor")),
640
+ description: ( localize(15185, "Contributes submenu items to the editor")),
641
641
  type: "array",
642
642
  items: submenu
643
643
  };
644
644
  function isValidCommand(command, collector) {
645
645
  if (!command) {
646
- collector.error(( localize(14258, "expected non-empty value.")));
646
+ collector.error(( localize(15186, "expected non-empty value.")));
647
647
  return false;
648
648
  }
649
649
  if (isFalsyOrWhitespace(command.command)) {
650
650
  collector.error(( localize(
651
- 14241,
651
+ 15169,
652
652
  "property `{0}` is mandatory and must be of type `string`",
653
653
  "command"
654
654
  )));
@@ -662,7 +662,7 @@ var schema;
662
662
  }
663
663
  if (command.enablement && typeof command.enablement !== "string") {
664
664
  collector.error(( localize(
665
- 14242,
665
+ 15170,
666
666
  "property `{0}` can be omitted or must be of type `string`",
667
667
  "precondition"
668
668
  )));
@@ -687,7 +687,7 @@ var schema;
687
687
  return true;
688
688
  }
689
689
  collector.error(( localize(
690
- 14259,
690
+ 15187,
691
691
  "property `icon` can be omitted or must be either a string or a literal like `{dark, light}`"
692
692
  )));
693
693
  return false;
@@ -695,21 +695,21 @@ var schema;
695
695
  function isValidLocalizedString(localized, collector, propertyName) {
696
696
  if (typeof localized === "undefined") {
697
697
  collector.error(( localize(
698
- 14260,
698
+ 15188,
699
699
  "property `{0}` is mandatory and must be of type `string` or `object`",
700
700
  propertyName
701
701
  )));
702
702
  return false;
703
703
  } else if (typeof localized === "string" && isFalsyOrWhitespace(localized)) {
704
704
  collector.error(( localize(
705
- 14241,
705
+ 15169,
706
706
  "property `{0}` is mandatory and must be of type `string`",
707
707
  propertyName
708
708
  )));
709
709
  return false;
710
710
  } else if (typeof localized !== "string" && (isFalsyOrWhitespace(localized.original) || isFalsyOrWhitespace(localized.value))) {
711
711
  collector.error(( localize(
712
- 14261,
712
+ 15189,
713
713
  "properties `{0}` and `{1}` are mandatory and must be of type `string`",
714
714
  `${propertyName}.value`,
715
715
  `${propertyName}.original`
@@ -723,37 +723,37 @@ var schema;
723
723
  required: ["command", "title"],
724
724
  properties: {
725
725
  command: {
726
- description: ( localize(14262, "Identifier of the command to execute")),
726
+ description: ( localize(15190, "Identifier of the command to execute")),
727
727
  type: "string"
728
728
  },
729
729
  title: {
730
- description: ( localize(14263, "Title by which the command is represented in the UI")),
730
+ description: ( localize(15191, "Title by which the command is represented in the UI")),
731
731
  type: "string"
732
732
  },
733
733
  shortTitle: {
734
734
  markdownDescription: ( localize(
735
- 14264,
735
+ 15192,
736
736
  "(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."
737
737
  )),
738
738
  type: "string"
739
739
  },
740
740
  category: {
741
741
  description: ( localize(
742
- 14265,
742
+ 15193,
743
743
  "(Optional) Category string by which the command is grouped in the UI"
744
744
  )),
745
745
  type: "string"
746
746
  },
747
747
  enablement: {
748
748
  description: ( localize(
749
- 14266,
749
+ 15194,
750
750
  "(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."
751
751
  )),
752
752
  type: "string"
753
753
  },
754
754
  icon: {
755
755
  description: ( localize(
756
- 14267,
756
+ 15195,
757
757
  "(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)\""
758
758
  )),
759
759
  anyOf: [{
@@ -762,11 +762,11 @@ var schema;
762
762
  type: "object",
763
763
  properties: {
764
764
  light: {
765
- description: ( localize(14268, "Icon path when a light theme is used")),
765
+ description: ( localize(15196, "Icon path when a light theme is used")),
766
766
  type: "string"
767
767
  },
768
768
  dark: {
769
- description: ( localize(14269, "Icon path when a dark theme is used")),
769
+ description: ( localize(15197, "Icon path when a dark theme is used")),
770
770
  type: "string"
771
771
  }
772
772
  }
@@ -775,7 +775,7 @@ var schema;
775
775
  }
776
776
  };
777
777
  schema.commandsContribution = {
778
- description: ( localize(14270, "Contributes commands to the command palette.")),
778
+ description: ( localize(15198, "Contributes commands to the command palette.")),
779
779
  oneOf: [commandType, {
780
780
  type: "array",
781
781
  items: commandType
@@ -825,14 +825,14 @@ commandsExtensionPoint.setHandler(extensions => {
825
825
  if (existingCmd) {
826
826
  if (existingCmd.source) {
827
827
  extension.collector.info(( localize(
828
- 14271,
828
+ 15199,
829
829
  "Command `{0}` already registered by {1} ({2})",
830
830
  userFriendlyCommand.command,
831
831
  existingCmd.source.title,
832
832
  existingCmd.source.id
833
833
  )));
834
834
  } else {
835
- extension.collector.info(( localize(14272, "Command `{0}` already registered", userFriendlyCommand.command)));
835
+ extension.collector.info(( localize(15200, "Command `{0}` already registered", userFriendlyCommand.command)));
836
836
  }
837
837
  }
838
838
  _commandRegistrations.add(MenuRegistry.addCommand({
@@ -880,19 +880,19 @@ submenusExtensionPoint.setHandler(extensions => {
880
880
  continue;
881
881
  }
882
882
  if (!submenuInfo.id) {
883
- collector.warn(( localize(14273, "`{0}` is not a valid submenu identifier", submenuInfo.id)));
883
+ collector.warn(( localize(15201, "`{0}` is not a valid submenu identifier", submenuInfo.id)));
884
884
  continue;
885
885
  }
886
886
  if (( _submenus.has(submenuInfo.id))) {
887
887
  collector.info(( localize(
888
- 14274,
888
+ 15202,
889
889
  "The `{0}` submenu was already previously registered.",
890
890
  submenuInfo.id
891
891
  )));
892
892
  continue;
893
893
  }
894
894
  if (!submenuInfo.label) {
895
- collector.warn(( localize(14275, "`{0}` is not a valid submenu label", submenuInfo.label)));
895
+ collector.warn(( localize(15203, "`{0}` is not a valid submenu label", submenuInfo.label)));
896
896
  continue;
897
897
  }
898
898
  let absoluteIcon;
@@ -953,7 +953,7 @@ menusExtensionPoint.setHandler(extensions => {
953
953
  }
954
954
  if (menu.proposed && !isProposedApiEnabled(extension.description, menu.proposed)) {
955
955
  collector.error(( localize(
956
- 14276,
956
+ 15204,
957
957
  "{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}",
958
958
  entry[0],
959
959
  menu.proposed,
@@ -968,7 +968,7 @@ menusExtensionPoint.setHandler(extensions => {
968
968
  const alt = menuItem.alt && MenuRegistry.getCommand(menuItem.alt) || undefined;
969
969
  if (!command) {
970
970
  collector.error(( localize(
971
- 14277,
971
+ 15205,
972
972
  "Menu item references a command `{0}` which is not defined in the 'commands' section.",
973
973
  menuItem.command
974
974
  )));
@@ -976,13 +976,13 @@ menusExtensionPoint.setHandler(extensions => {
976
976
  }
977
977
  if (menuItem.alt && !alt) {
978
978
  collector.warn(( localize(
979
- 14278,
979
+ 15206,
980
980
  "Menu item references an alt-command `{0}` which is not defined in the 'commands' section.",
981
981
  menuItem.alt
982
982
  )));
983
983
  }
984
984
  if (menuItem.command === menuItem.alt) {
985
- collector.info(( localize(14279, "Menu item references the same command as default and alt-command")));
985
+ collector.info(( localize(15207, "Menu item references the same command as default and alt-command")));
986
986
  }
987
987
  item = {
988
988
  command,
@@ -994,7 +994,7 @@ menusExtensionPoint.setHandler(extensions => {
994
994
  } else {
995
995
  if (menu.supportsSubmenus === false) {
996
996
  collector.error(( localize(
997
- 14280,
997
+ 15208,
998
998
  "Menu item references a submenu for a menu which doesn't have submenu support."
999
999
  )));
1000
1000
  continue;
@@ -1002,7 +1002,7 @@ menusExtensionPoint.setHandler(extensions => {
1002
1002
  const submenu = _submenus.get(menuItem.submenu);
1003
1003
  if (!submenu) {
1004
1004
  collector.error(( localize(
1005
- 14281,
1005
+ 15209,
1006
1006
  "Menu item references a submenu `{0}` which is not defined in the 'submenus' section.",
1007
1007
  menuItem.submenu
1008
1008
  )));
@@ -1015,7 +1015,7 @@ menusExtensionPoint.setHandler(extensions => {
1015
1015
  }
1016
1016
  if (( submenuRegistrations.has(submenu.id.id))) {
1017
1017
  collector.warn(( localize(
1018
- 14282,
1018
+ 15210,
1019
1019
  "The `{0}` submenu was already contributed to the `{1}` menu.",
1020
1020
  menuItem.submenu,
1021
1021
  entry[0]
@@ -1043,7 +1043,7 @@ menusExtensionPoint.setHandler(extensions => {
1043
1043
  }
1044
1044
  if (menu.id === MenuId.ViewContainerTitle && !menuItem.when?.includes("viewContainer == workbench.view.debug")) {
1045
1045
  collector.error(( localize(
1046
- 14283,
1046
+ 15211,
1047
1047
  "The {0} menu contribution must check {1} in its {2} clause.",
1048
1048
  "`viewContainer/title`",
1049
1049
  "`viewContainer == workbench.view.debug`",
@@ -1145,7 +1145,7 @@ let CommandsTableRenderer = class CommandsTableRenderer extends Disposable {
1145
1145
  dispose: () => {}
1146
1146
  };
1147
1147
  }
1148
- const headers = [( localize(14284, "ID")), ( localize(14285, "Title")), ( localize(14286, "Keyboard Shortcuts")), ( localize(14287, "Menu Contexts"))];
1148
+ const headers = [( localize(15212, "ID")), ( localize(15213, "Title")), ( localize(15214, "Keyboard Shortcuts")), ( localize(15215, "Menu Contexts"))];
1149
1149
  const rows = ( commands.sort((a, b) => a.id.localeCompare(b.id)).map(command => {
1150
1150
  return [( new MarkdownString()).appendMarkdown(`\`${command.id}\``), typeof command.title === "string" ? command.title : command.title.value, command.keybindings, ( new MarkdownString()).appendMarkdown(`${( command.menus.sort((a, b) => a.localeCompare(b)).map(menu => `\`${menu}\``)).join(" ")}`)];
1151
1151
  }));
@@ -1176,7 +1176,7 @@ let CommandsTableRenderer = class CommandsTableRenderer extends Disposable {
1176
1176
  CommandsTableRenderer = ( __decorate([( __param(0, IKeybindingService))], CommandsTableRenderer));
1177
1177
  ( Registry.as(Extensions.ExtensionFeaturesRegistry)).registerExtensionFeature({
1178
1178
  id: "commands",
1179
- label: ( localize(14288, "Commands")),
1179
+ label: ( localize(15216, "Commands")),
1180
1180
  access: {
1181
1181
  canToggle: false
1182
1182
  },
@@ -18,7 +18,7 @@ let CommandService = class CommandService extends Disposable {
18
18
  this._extensionHostIsReady = false;
19
19
  this._onWillExecuteCommand = this._register(( new Emitter()));
20
20
  this.onWillExecuteCommand = this._onWillExecuteCommand.event;
21
- this._onDidExecuteCommand = ( new Emitter());
21
+ this._onDidExecuteCommand = this._register(( new Emitter()));
22
22
  this.onDidExecuteCommand = this._onDidExecuteCommand.event;
23
23
  this._extensionService.whenInstalledExtensionsRegistered().then(value => this._extensionHostIsReady = value);
24
24
  this._starActivation = null;
@@ -51,39 +51,39 @@ import { EditorContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/editor
51
51
  var WorkbenchKeybindingService_1;
52
52
  function isValidContributedKeyBinding(keyBinding, rejects) {
53
53
  if (!keyBinding) {
54
- rejects.push(( localize(14696, "expected non-empty value.")));
54
+ rejects.push(( localize(15624, "expected non-empty value.")));
55
55
  return false;
56
56
  }
57
57
  if (typeof keyBinding.command !== "string") {
58
58
  rejects.push(( localize(
59
- 14697,
59
+ 15625,
60
60
  "property `{0}` is mandatory and must be of type `string`",
61
61
  "command"
62
62
  )));
63
63
  return false;
64
64
  }
65
65
  if (keyBinding.key && typeof keyBinding.key !== "string") {
66
- rejects.push(( localize(14698, "property `{0}` can be omitted or must be of type `string`", "key")));
66
+ rejects.push(( localize(15626, "property `{0}` can be omitted or must be of type `string`", "key")));
67
67
  return false;
68
68
  }
69
69
  if (keyBinding.when && typeof keyBinding.when !== "string") {
70
- rejects.push(( localize(14698, "property `{0}` can be omitted or must be of type `string`", "when")));
70
+ rejects.push(( localize(15626, "property `{0}` can be omitted or must be of type `string`", "when")));
71
71
  return false;
72
72
  }
73
73
  if (keyBinding.mac && typeof keyBinding.mac !== "string") {
74
- rejects.push(( localize(14698, "property `{0}` can be omitted or must be of type `string`", "mac")));
74
+ rejects.push(( localize(15626, "property `{0}` can be omitted or must be of type `string`", "mac")));
75
75
  return false;
76
76
  }
77
77
  if (keyBinding.linux && typeof keyBinding.linux !== "string") {
78
78
  rejects.push(( localize(
79
- 14698,
79
+ 15626,
80
80
  "property `{0}` can be omitted or must be of type `string`",
81
81
  "linux"
82
82
  )));
83
83
  return false;
84
84
  }
85
85
  if (keyBinding.win && typeof keyBinding.win !== "string") {
86
- rejects.push(( localize(14698, "property `{0}` can be omitted or must be of type `string`", "win")));
86
+ rejects.push(( localize(15626, "property `{0}` can be omitted or must be of type `string`", "win")));
87
87
  return false;
88
88
  }
89
89
  return true;
@@ -97,33 +97,33 @@ const keybindingType = {
97
97
  required: ["command", "key"],
98
98
  properties: {
99
99
  command: {
100
- description: ( localize(14699, "Identifier of the command to run when keybinding is triggered.")),
100
+ description: ( localize(15627, "Identifier of the command to run when keybinding is triggered.")),
101
101
  type: "string"
102
102
  },
103
103
  args: {
104
- description: ( localize(14700, "Arguments to pass to the command to execute."))
104
+ description: ( localize(15628, "Arguments to pass to the command to execute."))
105
105
  },
106
106
  key: {
107
107
  description: ( localize(
108
- 14701,
108
+ 15629,
109
109
  "Key or key sequence (separate keys with plus-sign and sequences with space, e.g. Ctrl+O and Ctrl+L L for a chord)."
110
110
  )),
111
111
  type: "string"
112
112
  },
113
113
  mac: {
114
- description: ( localize(14702, "Mac specific key or key sequence.")),
114
+ description: ( localize(15630, "Mac specific key or key sequence.")),
115
115
  type: "string"
116
116
  },
117
117
  linux: {
118
- description: ( localize(14703, "Linux specific key or key sequence.")),
118
+ description: ( localize(15631, "Linux specific key or key sequence.")),
119
119
  type: "string"
120
120
  },
121
121
  win: {
122
- description: ( localize(14704, "Windows specific key or key sequence.")),
122
+ description: ( localize(15632, "Windows specific key or key sequence.")),
123
123
  type: "string"
124
124
  },
125
125
  when: {
126
- description: ( localize(14705, "Condition when the key is active.")),
126
+ description: ( localize(15633, "Condition when the key is active.")),
127
127
  type: "string"
128
128
  }
129
129
  }
@@ -132,7 +132,7 @@ const keybindingsExtPoint = ExtensionsRegistry.registerExtensionPoint({
132
132
  extensionPoint: "keybindings",
133
133
  deps: [commandsExtensionPoint],
134
134
  jsonSchema: {
135
- description: ( localize(14706, "Contributes keybindings.")),
135
+ description: ( localize(15634, "Contributes keybindings.")),
136
136
  oneOf: [keybindingType, {
137
137
  type: "array",
138
138
  items: keybindingType
@@ -555,7 +555,7 @@ let WorkbenchKeybindingService = WorkbenchKeybindingService_1 = class WorkbenchK
555
555
  }
556
556
  if (rejects.length > 0) {
557
557
  collector.error(( localize(
558
- 14707,
558
+ 15635,
559
559
  "Invalid `contributes.{0}`: {1}",
560
560
  keybindingsExtPoint.name,
561
561
  rejects.join("\n")
@@ -643,7 +643,7 @@ let WorkbenchKeybindingService = WorkbenchKeybindingService_1 = class WorkbenchK
643
643
  static _getAllCommandsAsComment(boundCommands) {
644
644
  const unboundCommands = getAllUnboundCommands(boundCommands);
645
645
  const pretty = unboundCommands.sort().join("\n// - ");
646
- return "// " + ( localize(14708, "Here are other available commands: ")) + "\n// - " + pretty;
646
+ return "// " + ( localize(15636, "Here are other available commands: ")) + "\n// - " + pretty;
647
647
  }
648
648
  mightProducePrintableCharacter(event) {
649
649
  if (event.ctrlKey || event.metaKey || event.altKey) {
@@ -766,7 +766,7 @@ class KeybindingsJsonSchema {
766
766
  this.schema = {
767
767
  id: KeybindingsJsonSchema.schemaId,
768
768
  type: "array",
769
- title: ( localize(14709, "Keybindings configuration")),
769
+ title: ( localize(15637, "Keybindings configuration")),
770
770
  allowTrailingCommas: true,
771
771
  allowComments: true,
772
772
  definitions: {
@@ -790,7 +790,7 @@ class KeybindingsJsonSchema {
790
790
  "type": "string",
791
791
  "enum": this.commandsEnum,
792
792
  "enumDescriptions": this.commandsEnumDescriptions,
793
- "description": ( localize(14710, "Name of the command to execute"))
793
+ "description": ( localize(15638, "Name of the command to execute"))
794
794
  },
795
795
  "commandType": {
796
796
  "anyOf": [{
@@ -799,7 +799,7 @@ class KeybindingsJsonSchema {
799
799
  "type": "string",
800
800
  "enum": this.removalCommandsEnum,
801
801
  "enumDescriptions": this.commandsEnumDescriptions,
802
- "description": ( localize(14711, "Name of the command to remove keyboard shortcut for"))
802
+ "description": ( localize(15639, "Name of the command to remove keyboard shortcut for"))
803
803
  }, {
804
804
  "type": "string"
805
805
  }]
@@ -821,7 +821,7 @@ class KeybindingsJsonSchema {
821
821
  "properties": {
822
822
  "key": {
823
823
  "type": "string",
824
- "description": ( localize(14712, "Key or key sequence (separated by space)"))
824
+ "description": ( localize(15640, "Key or key sequence (separated by space)"))
825
825
  },
826
826
  "command": {
827
827
  "anyOf": [{
@@ -833,7 +833,7 @@ class KeybindingsJsonSchema {
833
833
  "type": "array"
834
834
  },
835
835
  "errorMessage": ( localize(
836
- 14713,
836
+ 15641,
837
837
  "Incorrect type. Expected \"{0}\". The field 'command' does not support running multiple commands. Use command 'runCommands' to pass it multiple commands to run.",
838
838
  "string"
839
839
  ))
@@ -847,10 +847,10 @@ class KeybindingsJsonSchema {
847
847
  },
848
848
  "when": {
849
849
  "type": "string",
850
- "description": ( localize(14714, "Condition when the key is active."))
850
+ "description": ( localize(15642, "Condition when the key is active."))
851
851
  },
852
852
  "args": {
853
- "description": ( localize(14715, "Arguments to pass to the command to execute."))
853
+ "description": ( localize(15643, "Arguments to pass to the command to execute."))
854
854
  }
855
855
  },
856
856
  "$ref": "#/definitions/commandsSchemas"
@@ -62,7 +62,7 @@ class BrowserKeyboardMapperFactoryBase extends Disposable {
62
62
  constructor(_configurationService) {
63
63
  super();
64
64
  this._configurationService = _configurationService;
65
- this._onDidChangeKeyboardMapper = ( new Emitter());
65
+ this._onDidChangeKeyboardMapper = this._register(( new Emitter()));
66
66
  this.onDidChangeKeyboardMapper = this._onDidChangeKeyboardMapper.event;
67
67
  this.keyboardLayoutMapAllowed = navigator.keyboard !== undefined;
68
68
  this._keyboardMapper = null;
@@ -393,7 +393,7 @@ let BrowserKeyboardLayoutService = class BrowserKeyboardLayoutService extends Di
393
393
  ) {
394
394
  super();
395
395
  this.configurationService = configurationService;
396
- this._onDidChangeKeyboardLayout = ( new Emitter());
396
+ this._onDidChangeKeyboardLayout = this._register(( new Emitter()));
397
397
  this.onDidChangeKeyboardLayout = this._onDidChangeKeyboardLayout.event;
398
398
  const keyboardConfig = configurationService.getValue("keyboard");
399
399
  const layout = keyboardConfig.layout;
@@ -476,12 +476,12 @@ const keyboardConfiguration = {
476
476
  "id": "keyboard",
477
477
  "order": 15,
478
478
  "type": "object",
479
- "title": ( localize(14716, "Keyboard")),
479
+ "title": ( localize(15644, "Keyboard")),
480
480
  "properties": {
481
481
  "keyboard.layout": {
482
482
  "type": "string",
483
483
  "default": "autodetect",
484
- "description": ( localize(14717, "Control the keyboard layout used in web."))
484
+ "description": ( localize(15645, "Control the keyboard layout used in web."))
485
485
  }
486
486
  }
487
487
  };