@opensumi/ide-editor 2.22.1 → 2.22.2-next-1675654400.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.
@@ -208,64 +208,64 @@ const monacoEditorSchema = {
208
208
  'editor.ariaLabel': {
209
209
  type: 'string',
210
210
  default: exports.EDITOR_DEFAULTS.viewInfo.ariaLabel,
211
- description: (0, ide_core_browser_1.localize)('ariaLabel', "The aria label for the editor's textarea (when it is focused)."),
211
+ description: '%editor.configuration.ariaLabel%',
212
212
  },
213
213
  'editor.extraEditorClassName': {
214
214
  type: 'string',
215
- description: (0, ide_core_browser_1.localize)('extraEditorClassName', 'Class name to be added to the editor.'),
215
+ description: '%editor.configuration.extraEditorClassName%',
216
216
  },
217
217
  'editor.fixedOverflowWidgets': {
218
218
  type: 'boolean',
219
219
  default: exports.EDITOR_DEFAULTS.viewInfo.fixedOverflowWidgets,
220
- description: (0, ide_core_browser_1.localize)('fixedOverflowWidgets', 'Display overflow widgets as fixed.'),
220
+ description: '%editor.configuration.fixedOverflowWidgets%',
221
221
  },
222
222
  'editor.revealHorizontalRightPadding': {
223
223
  type: 'number',
224
- description: (0, ide_core_browser_1.localize)('revealHorizontalRightPadding', 'When revealing the cursor, a virtual padding (px) is added to the cursor, turning it into a rectangle. This virtual padding ensures that the cursor gets revealed before hitting the edge of the viewport. Defaults to 30 (px).'),
224
+ description: '%editor.configuration.revealHorizontalRightPadding%',
225
225
  },
226
226
  'editor.selectOnLineNumbers': {
227
227
  type: 'boolean',
228
- description: (0, ide_core_browser_1.localize)('selectOnLineNumbers', 'Should the corresponding line be selected when clicking on the line number? Defaults to true.'),
228
+ description: '%editor.configuration.selectOnLineNumbers%',
229
229
  },
230
230
  'editor.wordWrapMinified': {
231
231
  type: 'boolean',
232
- description: (0, ide_core_browser_1.localize)('wordWrapMinified', 'Force word wrapping when the text appears to be of a minified/generated file. Defaults to true.'),
232
+ description: '%editor.configuration.wordWrapMinified%',
233
233
  },
234
234
  'editor.wordWrapBreakAfterCharacters': {
235
235
  type: 'string',
236
236
  default: ' \t})]?|/&.,;¢°′″‰℃、。。、¢,.:;?!%・・ゝゞヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻ァィゥェォャュョッー”〉》」』】〕)]}」',
237
- description: (0, ide_core_browser_1.localize)('wordWrapBreakAfterCharacters', "Configure word wrapping characters. A break will be introduced after these characters. Defaults to ' \t})]?|/&.,;¢°′″‰℃、。。、¢,.:;?!%・・ゝゞヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻ァィゥェォャュョッー”〉》」』】〕)]}」'."),
237
+ description: '%editor.configuration.wordWrapBreakAfterCharacters%',
238
238
  },
239
239
  'editor.wrappingStrategy': {
240
240
  type: 'string',
241
241
  enum: ['advanced', 'simple'],
242
242
  default: 'simple',
243
- description: (0, ide_core_browser_1.localize)('wrappingStrategy', 'Controls the algorithm that computes wrapping points.'),
243
+ description: '%editor.configuration.wrappingStrategy%',
244
244
  },
245
245
  'editor.wordWrapBreakBeforeCharacters': {
246
246
  type: 'string',
247
247
  default: '([{‘“〈《「『【〔([{「£¥$£¥++',
248
- description: (0, ide_core_browser_1.localize)('wordWrapBreakBeforeCharacters', "Configure word wrapping characters. A break will be introduced before these characters. Defaults to '([{‘“〈《「『【〔([{「£¥$£¥++'."),
248
+ description: '%editor.configuration.wordWrapBreakBeforeCharacters%',
249
249
  },
250
250
  'editor.lineNumbersMinChars': {
251
251
  type: 'number',
252
252
  default: exports.EDITOR_DEFAULTS.lineNumbersMinChars,
253
- description: (0, ide_core_browser_1.localize)('lineNumbersMinChars', 'Control the width of line numbers, by reserving horizontal space for rendering at least an amount of digits. Defaults to 5.'),
253
+ description: '%editor.configuration.lineNumbersMinChars%',
254
254
  },
255
255
  'editor.lineDecorationsWidth': {
256
256
  type: 'number',
257
257
  default: exports.EDITOR_DEFAULTS.lineDecorationsWidth,
258
- description: (0, ide_core_browser_1.localize)('lineDecorationsWidth', 'The width reserved for line decorations (in px). Line decorations are placed between line numbers and the editor content. You can pass in a string in the format floating point followed by "ch". e.g. 1.3ch. Defaults to 10.'),
258
+ description: '%editor.configuration.lineDecorationsWidth%',
259
259
  },
260
260
  'editor.fontFamily': {
261
261
  type: 'string',
262
262
  default: exports.EDITOR_FONT_DEFAULTS.fontFamily,
263
- description: (0, ide_core_browser_1.localize)('fontFamily', 'Controls the font family.'),
263
+ description: '%editor.configuration.fontFamily%',
264
264
  },
265
265
  'editor.fontWeight': {
266
266
  type: 'string',
267
267
  default: exports.EDITOR_FONT_DEFAULTS.fontWeight,
268
- description: (0, ide_core_browser_1.localize)('editor.configuration.fontWeight'),
268
+ description: '%editor.configuration.fontWeight%',
269
269
  },
270
270
  'editor.fontSize': {
271
271
  type: 'number',
@@ -281,240 +281,240 @@ const monacoEditorSchema = {
281
281
  type: 'string',
282
282
  enum: ['insert', 'replace'],
283
283
  enumDescriptions: [
284
- (0, ide_core_browser_1.localize)('suggest.insertMode.insert', 'Insert suggestion without overwriting text right of the cursor.'),
285
- (0, ide_core_browser_1.localize)('suggest.insertMode.replace', 'Insert suggestion and overwrite text right of the cursor.'),
284
+ (0, ide_core_browser_1.localize)('editor.configuration.suggest.insertMode.insert', 'Insert suggestion without overwriting text right of the cursor.'),
285
+ (0, ide_core_browser_1.localize)('editor.configuration.suggest.insertMode.replace', 'Insert suggestion and overwrite text right of the cursor.'),
286
286
  ],
287
287
  default: 'insert',
288
- description: (0, ide_core_browser_1.localize)('suggest.insertMode', 'Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature.'),
288
+ description: '%editor.configuration.suggest.insertMode%',
289
289
  },
290
290
  'editor.suggest.filterGraceful': {
291
291
  type: 'boolean',
292
292
  default: exports.EDITOR_SUGGEST_DEFAULTS.filterGraceful,
293
- description: (0, ide_core_browser_1.localize)('suggest.filterGraceful', 'Controls whether filtering and sorting suggestions accounts for small typos.'),
293
+ description: '%editor.configuration.suggest.filterGraceful%',
294
294
  },
295
295
  'editor.suggest.localityBonus': {
296
296
  type: 'boolean',
297
297
  default: exports.EDITOR_SUGGEST_DEFAULTS.localityBonus,
298
- description: (0, ide_core_browser_1.localize)('suggest.localityBonus', 'Controls whether sorting favours words that appear close to the cursor.'),
298
+ description: '%editor.configuration.suggest.localityBonus%',
299
299
  },
300
300
  'editor.suggest.shareSuggestSelections': {
301
301
  type: 'boolean',
302
302
  default: exports.EDITOR_SUGGEST_DEFAULTS.shareSuggestSelections,
303
- description: (0, ide_core_browser_1.localize)('suggest.shareSuggestSelections', 'Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`).'),
303
+ description: '%editor.configuration.suggest.shareSuggestSelections%',
304
304
  },
305
305
  'editor.suggest.snippetsPreventQuickSuggestions': {
306
306
  type: 'boolean',
307
307
  default: exports.EDITOR_SUGGEST_DEFAULTS.snippetsPreventQuickSuggestions,
308
- description: (0, ide_core_browser_1.localize)('suggest.snippetsPreventQuickSuggestions', 'Controls whether an active snippet prevents quick suggestions.'),
308
+ description: '%editor.configuration.suggest.snippetsPreventQuickSuggestions%',
309
309
  },
310
310
  'editor.suggest.showIcons': {
311
311
  type: 'boolean',
312
312
  default: exports.EDITOR_SUGGEST_DEFAULTS.showIcons,
313
- description: (0, ide_core_browser_1.localize)('suggest.showIcons', 'Controls whether to show or hide icons in suggestions.'),
313
+ description: '%editor.configuration.suggest.showIcons%',
314
314
  },
315
315
  'editor.suggest.maxVisibleSuggestions': {
316
316
  type: 'number',
317
317
  default: exports.EDITOR_SUGGEST_DEFAULTS.maxVisibleSuggestions,
318
318
  minimum: 1,
319
319
  maximum: 15,
320
- description: (0, ide_core_browser_1.localize)('editor.suggest.maxVisibleSuggestions', 'Controls how many suggestions IntelliSense will show before showing a scrollbar (maximum 15).'),
320
+ description: '%editor.configuration.suggest.maxVisibleSuggestions%',
321
321
  },
322
322
  'editor.suggest.showMethods': {
323
323
  type: 'boolean',
324
324
  default: true,
325
- description: (0, ide_core_browser_1.localize)('editor.suggest.showMethods', 'When enabled IntelliSense shows `method`-suggestions.'),
325
+ description: '%editor.configuration.suggest.showMethods%',
326
326
  },
327
327
  'editor.suggest.showFunctions': {
328
328
  type: 'boolean',
329
329
  default: true,
330
- description: (0, ide_core_browser_1.localize)('editor.suggest.showFunctions', 'When enabled IntelliSense shows `function`-suggestions.'),
330
+ description: '%editor.configuration.suggest.showFunctions%',
331
331
  },
332
332
  'editor.suggest.showConstructors': {
333
333
  type: 'boolean',
334
334
  default: true,
335
- description: (0, ide_core_browser_1.localize)('editor.suggest.showConstructors', 'When enabled IntelliSense shows `constructor`-suggestions.'),
335
+ description: '%editor.configuration.suggest.showConstructors%',
336
336
  },
337
337
  'editor.suggest.showFields': {
338
338
  type: 'boolean',
339
339
  default: true,
340
- description: (0, ide_core_browser_1.localize)('editor.suggest.showFields', 'When enabled IntelliSense shows `field`-suggestions.'),
340
+ description: '%editor.configuration.suggest.showFields%',
341
341
  },
342
342
  'editor.suggest.showVariables': {
343
343
  type: 'boolean',
344
344
  default: true,
345
- description: (0, ide_core_browser_1.localize)('editor.suggest.showVariables', 'When enabled IntelliSense shows `variable`-suggestions.'),
345
+ description: '%editor.configuration.suggest.showVariables%',
346
346
  },
347
347
  'editor.suggest.showClasses': {
348
348
  type: 'boolean',
349
349
  default: true,
350
- description: (0, ide_core_browser_1.localize)('editor.suggest.showClasss', 'When enabled IntelliSense shows `class`-suggestions.'),
350
+ description: '%editor.configuration.suggest.showClasss%',
351
351
  },
352
352
  'editor.suggest.showStructs': {
353
353
  type: 'boolean',
354
354
  default: true,
355
- description: (0, ide_core_browser_1.localize)('editor.suggest.showStructs', 'When enabled IntelliSense shows `struct`-suggestions.'),
355
+ description: '%editor.configuration.suggest.showStructs%',
356
356
  },
357
357
  'editor.suggest.showInterfaces': {
358
358
  type: 'boolean',
359
359
  default: true,
360
- description: (0, ide_core_browser_1.localize)('editor.suggest.showInterfaces', 'When enabled IntelliSense shows `interface`-suggestions.'),
360
+ description: '%editor.configuration.suggest.showInterfaces%',
361
361
  },
362
362
  'editor.suggest.showModules': {
363
363
  type: 'boolean',
364
364
  default: true,
365
- description: (0, ide_core_browser_1.localize)('editor.suggest.showModules', 'When enabled IntelliSense shows `module`-suggestions.'),
365
+ description: '%editor.configuration.suggest.showModules%',
366
366
  },
367
367
  'editor.suggest.showProperties': {
368
368
  type: 'boolean',
369
369
  default: true,
370
- description: (0, ide_core_browser_1.localize)('editor.suggest.showPropertys', 'When enabled IntelliSense shows `property`-suggestions.'),
370
+ description: '%editor.configuration.suggest.showPropertys%',
371
371
  },
372
372
  'editor.suggest.showEvents': {
373
373
  type: 'boolean',
374
374
  default: true,
375
- description: (0, ide_core_browser_1.localize)('editor.suggest.showEvents', 'When enabled IntelliSense shows `event`-suggestions.'),
375
+ description: '%editor.configuration.suggest.showEvents%',
376
376
  },
377
377
  'editor.suggest.showOperators': {
378
378
  type: 'boolean',
379
379
  default: true,
380
- description: (0, ide_core_browser_1.localize)('editor.suggest.showOperators', 'When enabled IntelliSense shows `operator`-suggestions.'),
380
+ description: '%editor.configuration.suggest.showOperators%',
381
381
  },
382
382
  'editor.suggest.showUnits': {
383
383
  type: 'boolean',
384
384
  default: true,
385
- description: (0, ide_core_browser_1.localize)('editor.suggest.showUnits', 'When enabled IntelliSense shows `unit`-suggestions.'),
385
+ description: '%editor.configuration.suggest.showUnits%',
386
386
  },
387
387
  'editor.suggest.showValues': {
388
388
  type: 'boolean',
389
389
  default: true,
390
- description: (0, ide_core_browser_1.localize)('editor.suggest.showValues', 'When enabled IntelliSense shows `value`-suggestions.'),
390
+ description: '%editor.configuration.suggest.showValues%',
391
391
  },
392
392
  'editor.suggest.showConstants': {
393
393
  type: 'boolean',
394
394
  default: true,
395
- description: (0, ide_core_browser_1.localize)('editor.suggest.showConstants', 'When enabled IntelliSense shows `constant`-suggestions.'),
395
+ description: '%editor.configuration.suggest.showConstants%',
396
396
  },
397
397
  'editor.suggest.showEnums': {
398
398
  type: 'boolean',
399
399
  default: true,
400
- description: (0, ide_core_browser_1.localize)('editor.suggest.showEnums', 'When enabled IntelliSense shows `enum`-suggestions.'),
400
+ description: '%editor.configuration.suggest.showEnums%',
401
401
  },
402
402
  'editor.suggest.showEnumMembers': {
403
403
  type: 'boolean',
404
404
  default: true,
405
- description: (0, ide_core_browser_1.localize)('editor.suggest.showEnumMembers', 'When enabled IntelliSense shows `enumMember`-suggestions.'),
405
+ description: '%editor.configuration.suggest.showEnumMembers%',
406
406
  },
407
407
  'editor.suggest.showKeywords': {
408
408
  type: 'boolean',
409
409
  default: true,
410
- description: (0, ide_core_browser_1.localize)('editor.suggest.showKeywords', 'When enabled IntelliSense shows `keyword`-suggestions.'),
410
+ description: '%editor.configuration.suggest.showKeywords%',
411
411
  },
412
412
  'editor.suggest.showWords': {
413
413
  type: 'boolean',
414
414
  default: true,
415
- description: (0, ide_core_browser_1.localize)('editor.suggest.showTexts', 'When enabled IntelliSense shows `text`-suggestions.'),
415
+ description: '%editor.configuration.suggest.showTexts%',
416
416
  },
417
417
  'editor.suggest.showColors': {
418
418
  type: 'boolean',
419
419
  default: true,
420
- description: (0, ide_core_browser_1.localize)('editor.suggest.showColors', 'When enabled IntelliSense shows `color`-suggestions.'),
420
+ description: '%editor.configuration.suggest.showColors%',
421
421
  },
422
422
  'editor.suggest.showFiles': {
423
423
  type: 'boolean',
424
424
  default: true,
425
- description: (0, ide_core_browser_1.localize)('editor.suggest.showFiles', 'When enabled IntelliSense shows `file`-suggestions.'),
425
+ description: '%editor.configuration.suggest.showFiles%',
426
426
  },
427
427
  'editor.suggest.showReferences': {
428
428
  type: 'boolean',
429
429
  default: true,
430
- description: (0, ide_core_browser_1.localize)('editor.suggest.showReferences', 'When enabled IntelliSense shows `reference`-suggestions.'),
430
+ description: '%editor.configuration.suggest.showReferences%',
431
431
  },
432
432
  'editor.suggest.showCustomcolors': {
433
433
  type: 'boolean',
434
434
  default: true,
435
- description: (0, ide_core_browser_1.localize)('editor.suggest.showCustomcolors', 'When enabled IntelliSense shows `customcolor`-suggestions.'),
435
+ description: '%editor.configuration.suggest.showCustomcolors%',
436
436
  },
437
437
  'editor.suggest.showFolders': {
438
438
  type: 'boolean',
439
439
  default: true,
440
- description: (0, ide_core_browser_1.localize)('editor.suggest.showFolders', 'When enabled IntelliSense shows `folder`-suggestions.'),
440
+ description: '%editor.configuration.suggest.showFolders%',
441
441
  },
442
442
  'editor.suggest.showTypeParameters': {
443
443
  type: 'boolean',
444
444
  default: true,
445
- description: (0, ide_core_browser_1.localize)('editor.suggest.showTypeParameters', 'When enabled IntelliSense shows `typeParameter`-suggestions.'),
445
+ description: '%editor.configuration.suggest.showTypeParameters%',
446
446
  },
447
447
  'editor.suggest.showSnippets': {
448
448
  type: 'boolean',
449
449
  default: true,
450
- description: (0, ide_core_browser_1.localize)('editor.suggest.showSnippets', 'When enabled IntelliSense shows `snippet`-suggestions.'),
450
+ description: '%editor.configuration.suggest.showSnippets%',
451
451
  },
452
452
  'editor.suggest.showUsers': {
453
453
  type: 'boolean',
454
454
  default: true,
455
- description: (0, ide_core_browser_1.localize)('editor.suggest.showUsers', 'When enabled IntelliSense shows `user`-suggestions.'),
455
+ description: '%editor.configuration.suggest.showUsers%',
456
456
  },
457
457
  'editor.suggest.showIssues': {
458
458
  type: 'boolean',
459
459
  default: true,
460
- description: (0, ide_core_browser_1.localize)('editor.suggest.showIssues', 'When enabled IntelliSense shows `issues`-suggestions.'),
460
+ description: '%editor.configuration.suggest.showIssues%',
461
461
  },
462
462
  'editor.suggest.statusBar.visible': {
463
463
  type: 'boolean',
464
464
  default: false,
465
- description: (0, ide_core_browser_1.localize)('editor.suggest.statusBar.visible', 'Controls the visibility of the status bar at the bottom of the suggest widget.'),
465
+ description: '%editor.configuration.suggest.statusBar.visible%',
466
466
  },
467
467
  'editor.suggest.preview': {
468
468
  type: 'boolean',
469
469
  default: exports.EDITOR_SUGGEST_DEFAULTS.preview,
470
- description: (0, ide_core_browser_1.localize)('editor.suggest.preview', 'Enable or disable the rendering of the suggestion preview.'),
470
+ description: '%editor.configuration.suggest.preview%',
471
471
  },
472
472
  'editor.suggest.details.visible': {
473
473
  type: 'boolean',
474
474
  default: exports.EDITOR_SUGGEST_DEFAULTS.detailsVisible,
475
- description: (0, ide_core_browser_1.localize)('editor.suggest.details.visible'),
475
+ description: '%editor.configuration.suggest.details.visible%',
476
476
  },
477
477
  'editor.inlineSuggest.enabled': {
478
478
  type: 'boolean',
479
479
  default: exports.EDITOR_INLINE_SUGGEST_DEFAULTS.enabled,
480
- description: (0, ide_core_browser_1.localize)('inlineSuggest.enabled', 'Enable or disable the rendering of automatic inline completions.'),
480
+ description: '%editor.configuration.inlineSuggest.enabled%',
481
481
  },
482
482
  'editor.experimental.stickyScroll.enabled': {
483
483
  type: 'boolean',
484
484
  default: true,
485
- description: (0, ide_core_browser_1.localize)('editor.experimental.stickyScroll', 'Shows the nested current scopes during the scroll at the top of the editor.'),
485
+ description: '%editor.configuration.experimental.stickyScroll%',
486
486
  },
487
487
  'editor.customCodeActionMenu.showHeaders': {
488
488
  type: 'boolean',
489
489
  default: true,
490
- description: (0, ide_core_browser_1.localize)('editor.customCodeActionMenu.showHeaders', 'Enabling this will show the code action menu with group headers, if the custom code action menu is enabled.'),
490
+ description: '%editor.configuration.customCodeActionMenu.showHeaders',
491
491
  },
492
492
  'editor.useCustomCodeActionMenu': {
493
493
  type: 'boolean',
494
494
  default: true,
495
- description: (0, ide_core_browser_1.localize)('editor.useCustomCodeActionMenu', 'Enabling this adjusts how the code action menu is rendered.'),
495
+ description: '%editor.configuration.useCustomCodeActionMenu%',
496
496
  },
497
497
  'editor.letterSpacing': {
498
498
  type: 'number',
499
499
  default: exports.EDITOR_FONT_DEFAULTS.letterSpacing,
500
- description: (0, ide_core_browser_1.localize)('letterSpacing', 'Controls the letter spacing in pixels.'),
500
+ description: '%editor.configuration.letterSpacing%',
501
501
  },
502
502
  'editor.lineNumbers': {
503
503
  type: 'string',
504
504
  enum: ['off', 'on', 'relative', 'interval'],
505
505
  enumDescriptions: [
506
- (0, ide_core_browser_1.localize)('lineNumbers.off', 'Line numbers are not rendered.'),
507
- (0, ide_core_browser_1.localize)('lineNumbers.on', 'Line numbers are rendered as absolute number.'),
508
- (0, ide_core_browser_1.localize)('lineNumbers.relative', 'Line numbers are rendered as distance in lines to cursor position.'),
509
- (0, ide_core_browser_1.localize)('lineNumbers.interval', 'Line numbers are rendered every 10 lines.'),
506
+ (0, ide_core_browser_1.localize)('editor.configuration.lineNumbers.off', 'Line numbers are not rendered.'),
507
+ (0, ide_core_browser_1.localize)('editor.configuration.lineNumbers.on', 'Line numbers are rendered as absolute number.'),
508
+ (0, ide_core_browser_1.localize)('editor.configuration.lineNumbers.relative', 'Line numbers are rendered as distance in lines to cursor position.'),
509
+ (0, ide_core_browser_1.localize)('editor.configuration.lineNumbers.interval', 'Line numbers are rendered every 10 lines.'),
510
510
  ],
511
511
  default: 'on',
512
- description: (0, ide_core_browser_1.localize)('lineNumbers', 'Controls the display of line numbers.'),
512
+ description: '%editor.configuration.lineNumbers%',
513
513
  },
514
514
  'editor.renderFinalNewline': {
515
515
  type: 'boolean',
516
516
  default: exports.EDITOR_DEFAULTS.viewInfo.renderFinalNewline,
517
- description: (0, ide_core_browser_1.localize)('renderFinalNewline', 'Render last line number when the file ends with a newline.'),
517
+ description: '%editor.configuration.renderFinalNewline%',
518
518
  },
519
519
  'editor.rulers': {
520
520
  type: 'array',
@@ -522,18 +522,18 @@ const monacoEditorSchema = {
522
522
  type: 'number',
523
523
  },
524
524
  default: exports.EDITOR_DEFAULTS.viewInfo.rulers,
525
- description: (0, ide_core_browser_1.localize)('rulers', 'Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty.'),
525
+ description: '%editor.configuration.rulers%',
526
526
  },
527
527
  'editor.wordSeparators': {
528
528
  type: 'string',
529
529
  default: exports.EDITOR_DEFAULTS.wordSeparators,
530
- description: (0, ide_core_browser_1.localize)('wordSeparators', 'Characters that will be used as word separators when doing word related navigations or operations.'),
530
+ description: '%editor.configuration.wordSeparators%',
531
531
  },
532
532
  'editor.tabSize': {
533
533
  type: 'number',
534
534
  default: exports.EDITOR_MODEL_DEFAULTS.tabSize,
535
535
  minimum: 1,
536
- markdownDescription: (0, ide_core_browser_1.localize)('tabSize', 'The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.'),
536
+ markdownDescription: '%editor.configuration.tabSize%',
537
537
  },
538
538
  // 'editor.indentSize': {
539
539
  // 'anyOf': [
@@ -552,64 +552,64 @@ const monacoEditorSchema = {
552
552
  'editor.insertSpaces': {
553
553
  type: 'boolean',
554
554
  default: exports.EDITOR_MODEL_DEFAULTS.insertSpaces,
555
- markdownDescription: (0, ide_core_browser_1.localize)('insertSpaces', 'Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.'),
555
+ markdownDescription: '%editor.configuration.insertSpaces%',
556
556
  },
557
557
  'editor.detectIndentation': {
558
558
  type: 'boolean',
559
559
  default: exports.EDITOR_MODEL_DEFAULTS.detectIndentation,
560
- markdownDescription: (0, ide_core_browser_1.localize)('detectIndentation', 'Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.'),
560
+ markdownDescription: '%editor.configuration.detectIndentation%',
561
561
  },
562
562
  'editor.roundedSelection': {
563
563
  type: 'boolean',
564
564
  default: exports.EDITOR_DEFAULTS.viewInfo.roundedSelection,
565
- description: (0, ide_core_browser_1.localize)('roundedSelection', 'Controls whether selections should have rounded corners.'),
565
+ description: '%editor.configuration.roundedSelection%',
566
566
  },
567
567
  'editor.scrollBeyondLastLine': {
568
568
  type: 'boolean',
569
569
  default: exports.EDITOR_DEFAULTS.viewInfo.scrollBeyondLastLine,
570
- description: (0, ide_core_browser_1.localize)('scrollBeyondLastLine', 'Controls whether the editor will scroll beyond the last line.'),
570
+ description: '%editor.configuration.scrollBeyondLastLine%',
571
571
  },
572
572
  'editor.scrollBeyondLastColumn': {
573
573
  type: 'number',
574
574
  default: exports.EDITOR_DEFAULTS.viewInfo.scrollBeyondLastColumn,
575
- description: (0, ide_core_browser_1.localize)('scrollBeyondLastColumn', 'Controls the number of extra characters beyond which the editor will scroll horizontally.'),
575
+ description: '%editor.configuration.scrollBeyondLastColumn%',
576
576
  },
577
577
  'editor.smoothScrolling': {
578
578
  type: 'boolean',
579
579
  default: exports.EDITOR_DEFAULTS.viewInfo.smoothScrolling,
580
- description: (0, ide_core_browser_1.localize)('smoothScrolling', 'Controls whether the editor will scroll using an animation.'),
580
+ description: '%editor.configuration.smoothScrolling%',
581
581
  },
582
582
  'editor.minimap.enabled': {
583
583
  type: 'boolean',
584
584
  default: exports.EDITOR_DEFAULTS.viewInfo.minimap.enabled,
585
- description: (0, ide_core_browser_1.localize)('minimap.enabled', 'Controls whether the minimap is shown.'),
585
+ description: '%editor.configuration.minimap.enabled%',
586
586
  },
587
587
  'editor.minimap.side': {
588
588
  type: 'string',
589
589
  enum: ['left', 'right'],
590
590
  default: exports.EDITOR_DEFAULTS.viewInfo.minimap.side,
591
- description: (0, ide_core_browser_1.localize)('minimap.side', 'Controls the side where to render the minimap.'),
591
+ description: '%editor.configuration.minimap.side%',
592
592
  },
593
593
  'editor.minimap.showSlider': {
594
594
  type: 'string',
595
595
  enum: ['always', 'mouseover'],
596
596
  default: exports.EDITOR_DEFAULTS.viewInfo.minimap.showSlider,
597
- description: (0, ide_core_browser_1.localize)('minimap.showSlider', 'Controls whether the minimap slider is automatically hidden.'),
597
+ description: '%editor.configuration.minimap.showSlider%',
598
598
  },
599
599
  'editor.minimap.renderCharacters': {
600
600
  type: 'boolean',
601
601
  default: exports.EDITOR_DEFAULTS.viewInfo.minimap.renderCharacters,
602
- description: (0, ide_core_browser_1.localize)('minimap.renderCharacters', 'Render the actual characters on a line as opposed to color blocks.'),
602
+ description: '%editor.configuration.minimap.renderCharacters%',
603
603
  },
604
604
  'editor.minimap.maxColumn': {
605
605
  type: 'number',
606
606
  default: exports.EDITOR_DEFAULTS.viewInfo.minimap.maxColumn,
607
- description: (0, ide_core_browser_1.localize)('minimap.maxColumn', 'Limit the width of the minimap to render at most a certain number of columns.'),
607
+ description: '%editor.configuration.minimap.maxColumn%',
608
608
  },
609
609
  'editor.hover.enabled': {
610
610
  type: 'boolean',
611
611
  default: exports.EDITOR_DEFAULTS.contribInfo.hover.enabled,
612
- description: (0, ide_core_browser_1.localize)('hover.enabled', 'Controls whether the hover is shown.'),
612
+ description: '%editor.configuration.hover.enabled%',
613
613
  },
614
614
  'editor.hover.delay': {
615
615
  type: 'number',
@@ -619,75 +619,75 @@ const monacoEditorSchema = {
619
619
  'editor.hover.sticky': {
620
620
  type: 'boolean',
621
621
  default: exports.EDITOR_DEFAULTS.contribInfo.hover.sticky,
622
- description: (0, ide_core_browser_1.localize)('hover.sticky', 'Controls whether the hover should remain visible when mouse is moved over it.'),
622
+ description: '%editor.configuration.hover.sticky%',
623
623
  },
624
624
  'editor.find.seedSearchStringFromSelection': {
625
625
  type: 'boolean',
626
626
  default: exports.EDITOR_DEFAULTS.contribInfo.find.seedSearchStringFromSelection,
627
- description: (0, ide_core_browser_1.localize)('find.seedSearchStringFromSelection', 'Controls whether the search string in the Find Widget is seeded from the editor selection.'),
627
+ description: '%editor.configuration.find.seedSearchStringFromSelection%',
628
628
  },
629
629
  'editor.find.autoFindInSelection': {
630
630
  type: 'boolean',
631
631
  default: exports.EDITOR_DEFAULTS.contribInfo.find.autoFindInSelection,
632
- description: (0, ide_core_browser_1.localize)('find.autoFindInSelection', 'Controls whether the find operation is carried out on selected text or the entire file in the editor.'),
632
+ description: '%editor.configuration.find.autoFindInSelection%',
633
633
  },
634
634
  'editor.find.globalFindClipboard': {
635
635
  type: 'boolean',
636
636
  default: exports.EDITOR_DEFAULTS.contribInfo.find.globalFindClipboard,
637
- description: (0, ide_core_browser_1.localize)('find.globalFindClipboard', 'Controls whether the Find Widget should read or modify the shared find clipboard on macOS.'),
637
+ description: '%editor.configuration.find.globalFindClipboard%',
638
638
  included: ide_core_browser_1.isOSX,
639
639
  },
640
640
  'editor.find.addExtraSpaceOnTop': {
641
641
  type: 'boolean',
642
642
  default: true,
643
- description: (0, ide_core_browser_1.localize)('find.addExtraSpaceOnTop', 'Controls whether the Find Widget should add extra lines on top of the editor. When true, you can scroll beyond the first line when the Find Widget is visible.'),
643
+ description: '%editor.configuration.find.addExtraSpaceOnTop%',
644
644
  },
645
645
  'editor.wordWrap': {
646
646
  type: 'string',
647
647
  enum: ['off', 'on', 'wordWrapColumn', 'bounded'],
648
648
  markdownEnumDescriptions: [
649
- (0, ide_core_browser_1.localize)('wordWrap.off', 'Lines will never wrap.'),
650
- (0, ide_core_browser_1.localize)('wordWrap.on', 'Lines will wrap at the viewport width.'),
651
- (0, ide_core_browser_1.localize)('wordWrap.wordWrapColumn', 'Lines will wrap at `#editor.wordWrapColumn#`.'),
652
- (0, ide_core_browser_1.localize)('wordWrap.bounded', 'Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`.'),
649
+ (0, ide_core_browser_1.localize)('editor.configuration.wordWrap.off', 'Lines will never wrap.'),
650
+ (0, ide_core_browser_1.localize)('editor.configuration.wordWrap.on', 'Lines will wrap at the viewport width.'),
651
+ (0, ide_core_browser_1.localize)('editor.configuration.wordWrap.wordWrapColumn', 'Lines will wrap at `#editor.wordWrapColumn#`.'),
652
+ (0, ide_core_browser_1.localize)('editor.configuration.wordWrap.bounded', 'Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`.'),
653
653
  ],
654
654
  default: exports.EDITOR_DEFAULTS.wordWrap,
655
- description: (0, ide_core_browser_1.localize)('wordWrap', 'Controls how lines should wrap.'),
655
+ description: '%editor.configuration.wordWrap%',
656
656
  },
657
657
  'editor.wordWrapColumn': {
658
658
  type: 'integer',
659
659
  default: exports.EDITOR_DEFAULTS.wordWrapColumn,
660
660
  minimum: 1,
661
- markdownDescription: (0, ide_core_browser_1.localize)('wordWrapColumn', 'Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`.'),
661
+ markdownDescription: '%editor.configuration.wordWrapColumn%',
662
662
  },
663
663
  'editor.wrappingIndent': {
664
664
  type: 'string',
665
665
  enum: ['none', 'same', 'indent', 'deepIndent'],
666
666
  enumDescriptions: [
667
- (0, ide_core_browser_1.localize)('wrappingIndent.none', 'No indentation. Wrapped lines begin at column 1.'),
668
- (0, ide_core_browser_1.localize)('wrappingIndent.same', 'Wrapped lines get the same indentation as the parent.'),
669
- (0, ide_core_browser_1.localize)('wrappingIndent.indent', 'Wrapped lines get +1 indentation toward the parent.'),
670
- (0, ide_core_browser_1.localize)('wrappingIndent.deepIndent', 'Wrapped lines get +2 indentation toward the parent.'),
667
+ (0, ide_core_browser_1.localize)('editor.configuration.wrappingIndent.none', 'No indentation. Wrapped lines begin at column 1.'),
668
+ (0, ide_core_browser_1.localize)('editor.configuration.wrappingIndent.same', 'Wrapped lines get the same indentation as the parent.'),
669
+ (0, ide_core_browser_1.localize)('editor.configuration.wrappingIndent.indent', 'Wrapped lines get +1 indentation toward the parent.'),
670
+ (0, ide_core_browser_1.localize)('editor.configuration.wrappingIndent.deepIndent', 'Wrapped lines get +2 indentation toward the parent.'),
671
671
  ],
672
672
  default: 'same',
673
- description: (0, ide_core_browser_1.localize)('wrappingIndent', 'Controls the indentation of wrapped lines.'),
673
+ description: '%editor.configuration.wrappingIndent%',
674
674
  },
675
675
  'editor.mouseWheelScrollSensitivity': {
676
676
  type: 'number',
677
677
  default: exports.EDITOR_DEFAULTS.viewInfo.scrollbar.mouseWheelScrollSensitivity,
678
- markdownDescription: (0, ide_core_browser_1.localize)('mouseWheelScrollSensitivity', 'A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.'),
678
+ markdownDescription: '%editor.configuration.mouseWheelScrollSensitivity%',
679
679
  },
680
680
  'editor.fastScrollSensitivity': {
681
681
  type: 'number',
682
682
  default: exports.EDITOR_DEFAULTS.viewInfo.scrollbar.fastScrollSensitivity,
683
- markdownDescription: (0, ide_core_browser_1.localize)('fastScrollSensitivity', 'Scrolling speed multiplier when pressing `Alt`.'),
683
+ markdownDescription: '%editor.configuration.fastScrollSensitivity%',
684
684
  },
685
685
  'editor.multiCursorModifier': {
686
686
  type: 'string',
687
687
  enum: ['ctrlCmd', 'alt'],
688
688
  markdownEnumDescriptions: [
689
- (0, ide_core_browser_1.localize)('multiCursorModifier.ctrlCmd', 'Maps to `Control` on Windows and Linux and to `Command` on macOS.'),
690
- (0, ide_core_browser_1.localize)('multiCursorModifier.alt', 'Maps to `Alt` on Windows and Linux and to `Option` on macOS.'),
689
+ (0, ide_core_browser_1.localize)('editor.configuration.multiCursorModifier.ctrlCmd', 'Maps to `Control` on Windows and Linux and to `Command` on macOS.'),
690
+ (0, ide_core_browser_1.localize)('editor.configuration.multiCursorModifier.alt', 'Maps to `Alt` on Windows and Linux and to `Option` on macOS.'),
691
691
  ],
692
692
  default: 'alt',
693
693
  markdownDescription: (0, ide_core_browser_1.localize)('multiCursorModifier', 'The modifier to be used to add multiple cursors with the mouse. The Go To Definition and Open Link mouse gestures will adapt such that they do not conflict with the multicursor modifier. [Read more](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).'),
@@ -695,7 +695,7 @@ const monacoEditorSchema = {
695
695
  'editor.multiCursorMergeOverlapping': {
696
696
  type: 'boolean',
697
697
  default: exports.EDITOR_DEFAULTS.multiCursorMergeOverlapping,
698
- description: (0, ide_core_browser_1.localize)('multiCursorMergeOverlapping', 'Merge multiple cursors when they are overlapping.'),
698
+ description: '%editor.configuration.multiCursorMergeOverlapping%',
699
699
  },
700
700
  'editor.quickSuggestions': {
701
701
  anyOf: [
@@ -708,95 +708,95 @@ const monacoEditorSchema = {
708
708
  strings: {
709
709
  type: 'boolean',
710
710
  default: false,
711
- description: (0, ide_core_browser_1.localize)('quickSuggestions.strings', 'Enable quick suggestions inside strings.'),
711
+ description: (0, ide_core_browser_1.localize)('editor.configuration.quickSuggestions.strings', 'Enable quick suggestions inside strings.'),
712
712
  },
713
713
  comments: {
714
714
  type: 'boolean',
715
715
  default: false,
716
- description: (0, ide_core_browser_1.localize)('quickSuggestions.comments', 'Enable quick suggestions inside comments.'),
716
+ description: (0, ide_core_browser_1.localize)('editor.configuration.quickSuggestions.comments', 'Enable quick suggestions inside comments.'),
717
717
  },
718
718
  other: {
719
719
  type: 'boolean',
720
720
  default: true,
721
- description: (0, ide_core_browser_1.localize)('quickSuggestions.other', 'Enable quick suggestions outside of strings and comments.'),
721
+ description: '%editor.configuration.quickSuggestions.other%',
722
722
  },
723
723
  },
724
724
  },
725
725
  ],
726
726
  default: exports.EDITOR_DEFAULTS.contribInfo.quickSuggestions,
727
- description: (0, ide_core_browser_1.localize)('quickSuggestions', 'Controls whether suggestions should automatically show up while typing.'),
727
+ description: '%editor.configuration.quickSuggestions%',
728
728
  },
729
729
  'editor.quickSuggestionsDelay': {
730
730
  type: 'integer',
731
731
  default: exports.EDITOR_DEFAULTS.contribInfo.quickSuggestionsDelay,
732
732
  minimum: 0,
733
- description: (0, ide_core_browser_1.localize)('quickSuggestionsDelay', 'Controls the delay in milliseconds after which quick suggestions will show up.'),
733
+ description: '%editor.configuration.quickSuggestionsDelay%',
734
734
  },
735
735
  'editor.parameterHints.enabled': {
736
736
  type: 'boolean',
737
737
  default: exports.EDITOR_DEFAULTS.contribInfo.parameterHints.enabled,
738
- description: (0, ide_core_browser_1.localize)('parameterHints.enabled', 'Enables a pop-up that shows parameter documentation and type information as you type.'),
738
+ description: '%editor.configuration.parameterHints.enabled%',
739
739
  },
740
740
  'editor.parameterHints.cycle': {
741
741
  type: 'boolean',
742
742
  default: exports.EDITOR_DEFAULTS.contribInfo.parameterHints.cycle,
743
- description: (0, ide_core_browser_1.localize)('parameterHints.cycle', 'Controls whether the parameter hints menu cycles or closes when reaching the end of the list.'),
743
+ description: '%editor.configuration.parameterHints.cycle%',
744
744
  },
745
745
  'editor.autoClosingBrackets': {
746
746
  type: 'string',
747
747
  enum: ['always', 'languageDefined', 'beforeWhitespace', 'never'],
748
748
  enumDescriptions: [
749
749
  '',
750
- (0, ide_core_browser_1.localize)('editor.autoClosingBrackets.languageDefined', 'Use language configurations to determine when to autoclose brackets.'),
751
- (0, ide_core_browser_1.localize)('editor.autoClosingBrackets.beforeWhitespace', 'Autoclose brackets only when the cursor is to the left of whitespace.'),
750
+ (0, ide_core_browser_1.localize)('editor.configuration.autoClosingBrackets.languageDefined', 'Use language configurations to determine when to autoclose brackets.'),
751
+ (0, ide_core_browser_1.localize)('editor.configuration.autoClosingBrackets.beforeWhitespace', 'Autoclose brackets only when the cursor is to the left of whitespace.'),
752
752
  '',
753
753
  ],
754
754
  default: exports.EDITOR_DEFAULTS.autoClosingBrackets,
755
- description: (0, ide_core_browser_1.localize)('autoClosingBrackets', 'Controls whether the editor should automatically close brackets after the user adds an opening bracket.'),
755
+ description: '%editor.configuration.autoClosingBrackets%',
756
756
  },
757
757
  'editor.autoClosingQuotes': {
758
758
  type: 'string',
759
759
  enum: ['always', 'languageDefined', 'beforeWhitespace', 'never'],
760
760
  enumDescriptions: [
761
761
  '',
762
- (0, ide_core_browser_1.localize)('editor.autoClosingQuotes.languageDefined', 'Use language configurations to determine when to autoclose quotes.'),
763
- (0, ide_core_browser_1.localize)('editor.autoClosingQuotes.beforeWhitespace', 'Autoclose quotes only when the cursor is to the left of whitespace.'),
762
+ (0, ide_core_browser_1.localize)('editor.configuration.autoClosingQuotes.languageDefined', 'Use language configurations to determine when to autoclose quotes.'),
763
+ (0, ide_core_browser_1.localize)('editor.configuration.autoClosingQuotes.beforeWhitespace', 'Autoclose quotes only when the cursor is to the left of whitespace.'),
764
764
  '',
765
765
  ],
766
766
  default: exports.EDITOR_DEFAULTS.autoClosingQuotes,
767
- description: (0, ide_core_browser_1.localize)('autoClosingQuotes', 'Controls whether the editor should automatically close quotes after the user adds an opening quote.'),
767
+ description: '%editor.configuration.autoClosingQuotes%',
768
768
  },
769
769
  'editor.autoSurround': {
770
770
  type: 'string',
771
771
  enum: ['languageDefined', 'brackets', 'quotes', 'never'],
772
772
  enumDescriptions: [
773
- (0, ide_core_browser_1.localize)('editor.autoSurround.languageDefined', 'Use language configurations to determine when to automatically surround selections.'),
774
- (0, ide_core_browser_1.localize)('editor.autoSurround.brackets', 'Surround with brackets but not quotes.'),
775
- (0, ide_core_browser_1.localize)('editor.autoSurround.quotes', 'Surround with quotes but not brackets.'),
773
+ (0, ide_core_browser_1.localize)('editor.configuration.autoSurround.languageDefined', 'Use language configurations to determine when to automatically surround selections.'),
774
+ (0, ide_core_browser_1.localize)('editor.configuration.autoSurround.brackets', 'Surround with brackets but not quotes.'),
775
+ (0, ide_core_browser_1.localize)('editor.configuration.autoSurround.quotes', 'Surround with quotes but not brackets.'),
776
776
  '',
777
777
  ],
778
778
  default: exports.EDITOR_DEFAULTS.autoSurround,
779
- description: (0, ide_core_browser_1.localize)('autoSurround', 'Controls whether the editor should automatically surround selections.'),
779
+ description: '%editor.configuration.autoSurround%',
780
780
  },
781
781
  'editor.formatOnType': {
782
782
  type: 'boolean',
783
783
  default: exports.EDITOR_DEFAULTS.contribInfo.formatOnType,
784
- description: (0, ide_core_browser_1.localize)('formatOnType', 'Controls whether the editor should automatically format the line after typing.'),
784
+ description: '%editor.configuration.formatOnType%',
785
785
  },
786
786
  'editor.formatOnPaste': {
787
787
  type: 'boolean',
788
788
  default: exports.EDITOR_DEFAULTS.contribInfo.formatOnPaste,
789
- description: (0, ide_core_browser_1.localize)('formatOnPaste', 'Controls whether the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document.'),
789
+ description: '%editor.configuration.formatOnPaste%',
790
790
  },
791
791
  'editor.autoIndent': {
792
792
  type: 'boolean',
793
793
  default: exports.EDITOR_DEFAULTS.autoIndent,
794
- description: (0, ide_core_browser_1.localize)('autoIndent', 'Controls whether the editor should automatically adjust the indentation when users type, paste or move lines. Extensions with indentation rules of the language must be available.'),
794
+ description: '%editor.configuration.autoIndent%',
795
795
  },
796
796
  'editor.suggestOnTriggerCharacters': {
797
797
  type: 'boolean',
798
798
  default: exports.EDITOR_DEFAULTS.contribInfo.suggestOnTriggerCharacters,
799
- description: (0, ide_core_browser_1.localize)('suggestOnTriggerCharacters', 'Controls whether suggestions should automatically show up when typing trigger characters.'),
799
+ description: '%editor.configuration.suggestOnTriggerCharacters%',
800
800
  },
801
801
  'editor.acceptSuggestionOnEnter': {
802
802
  type: 'string',
@@ -804,318 +804,318 @@ const monacoEditorSchema = {
804
804
  default: exports.EDITOR_DEFAULTS.contribInfo.acceptSuggestionOnEnter,
805
805
  markdownEnumDescriptions: [
806
806
  '',
807
- (0, ide_core_browser_1.localize)('acceptSuggestionOnEnterSmart', 'Only accept a suggestion with `Enter` when it makes a textual change.'),
807
+ (0, ide_core_browser_1.localize)('editor.configuration.acceptSuggestionOnEnterSmart', 'Only accept a suggestion with `Enter` when it makes a textual change.'),
808
808
  '',
809
809
  ],
810
- markdownDescription: (0, ide_core_browser_1.localize)('acceptSuggestionOnEnter', 'Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.'),
810
+ markdownDescription: (0, ide_core_browser_1.localize)('editor.configuration.acceptSuggestionOnEnter', 'Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.'),
811
811
  },
812
812
  'editor.acceptSuggestionOnCommitCharacter': {
813
813
  type: 'boolean',
814
814
  default: exports.EDITOR_DEFAULTS.contribInfo.acceptSuggestionOnCommitCharacter,
815
- markdownDescription: (0, ide_core_browser_1.localize)('acceptSuggestionOnCommitCharacter', 'Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.'),
815
+ markdownDescription: (0, ide_core_browser_1.localize)('editor.configuration.acceptSuggestionOnCommitCharacter', 'Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.'),
816
816
  },
817
817
  'editor.snippetSuggestions': {
818
818
  type: 'string',
819
819
  enum: ['top', 'bottom', 'inline', 'none'],
820
820
  enumDescriptions: [
821
- (0, ide_core_browser_1.localize)('snippetSuggestions.top', 'Show snippet suggestions on top of other suggestions.'),
822
- (0, ide_core_browser_1.localize)('snippetSuggestions.bottom', 'Show snippet suggestions below other suggestions.'),
823
- (0, ide_core_browser_1.localize)('snippetSuggestions.inline', 'Show snippets suggestions with other suggestions.'),
824
- (0, ide_core_browser_1.localize)('snippetSuggestions.none', 'Do not show snippet suggestions.'),
821
+ (0, ide_core_browser_1.localize)('editor.configuration.snippetSuggestions.top', 'Show snippet suggestions on top of other suggestions.'),
822
+ (0, ide_core_browser_1.localize)('editor.configuration.snippetSuggestions.bottom', 'Show snippet suggestions below other suggestions.'),
823
+ (0, ide_core_browser_1.localize)('editor.configuration.snippetSuggestions.inline', 'Show snippets suggestions with other suggestions.'),
824
+ (0, ide_core_browser_1.localize)('editor.configuration.snippetSuggestions.none', 'Do not show snippet suggestions.'),
825
825
  ],
826
826
  default: 'inline',
827
- description: (0, ide_core_browser_1.localize)('snippetSuggestions', 'Controls whether snippets are shown with other suggestions and how they are sorted.'),
827
+ description: '%editor.configuration.snippetSuggestions%',
828
828
  },
829
829
  'editor.emptySelectionClipboard': {
830
830
  type: 'boolean',
831
831
  default: exports.EDITOR_DEFAULTS.emptySelectionClipboard,
832
- description: (0, ide_core_browser_1.localize)('emptySelectionClipboard', 'Controls whether copying without a selection copies the current line.'),
832
+ description: '%editor.configuration.emptySelectionClipboard%',
833
833
  },
834
834
  'editor.copyWithSyntaxHighlighting': {
835
835
  type: 'boolean',
836
836
  default: exports.EDITOR_DEFAULTS.copyWithSyntaxHighlighting,
837
- description: (0, ide_core_browser_1.localize)('copyWithSyntaxHighlighting', 'Controls whether syntax highlighting should be copied into the clipboard.'),
837
+ description: '%editor.configuration.copyWithSyntaxHighlighting%',
838
838
  },
839
839
  'editor.wordBasedSuggestions': {
840
840
  type: 'boolean',
841
841
  default: exports.EDITOR_DEFAULTS.contribInfo.wordBasedSuggestions,
842
- description: (0, ide_core_browser_1.localize)('wordBasedSuggestions', 'Controls whether completions should be computed based on words in the document.'),
842
+ description: '%editor.configuration.wordBasedSuggestions%',
843
843
  },
844
844
  'editor.suggestSelection': {
845
845
  type: 'string',
846
846
  enum: ['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
847
847
  markdownEnumDescriptions: [
848
- (0, ide_core_browser_1.localize)('suggestSelection.first', 'Always select the first suggestion.'),
849
- (0, ide_core_browser_1.localize)('suggestSelection.recentlyUsed', 'Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently.'),
850
- (0, ide_core_browser_1.localize)('suggestSelection.recentlyUsedByPrefix', 'Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`.'),
848
+ (0, ide_core_browser_1.localize)('editor.configuration.suggestSelection.first', 'Always select the first suggestion.'),
849
+ (0, ide_core_browser_1.localize)('editor.configuration.suggestSelection.recentlyUsed', 'Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently.'),
850
+ (0, ide_core_browser_1.localize)('editor.configuration.suggestSelection.recentlyUsedByPrefix', 'Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`.'),
851
851
  ],
852
852
  default: 'recentlyUsed',
853
- description: (0, ide_core_browser_1.localize)('suggestSelection', 'Controls how suggestions are pre-selected when showing the suggest list.'),
853
+ description: '%editor.configuration.suggestSelection%',
854
854
  },
855
855
  'editor.suggestFontSize': {
856
856
  type: 'integer',
857
857
  default: 0,
858
858
  minimum: 0,
859
- markdownDescription: (0, ide_core_browser_1.localize)('suggestFontSize', 'Font size for the suggest widget. When set to `0`, the value of `#editor.fontSize#` is used.'),
859
+ markdownDescription: '%editor.configuration.suggestFontSize%',
860
860
  },
861
861
  'editor.suggestLineHeight': {
862
862
  type: 'integer',
863
863
  default: 0,
864
864
  minimum: 0,
865
- markdownDescription: (0, ide_core_browser_1.localize)('suggestLineHeight', 'Line height for the suggest widget. When set to `0`, the value of `#editor.lineHeight#` is used.'),
865
+ markdownDescription: '%editor.configuration.suggestLineHeight%',
866
866
  },
867
867
  'editor.tabCompletion': {
868
868
  type: 'string',
869
869
  default: 'off',
870
870
  enum: ['on', 'off', 'onlySnippets'],
871
871
  enumDescriptions: [
872
- (0, ide_core_browser_1.localize)('tabCompletion.on', 'Tab complete will insert the best matching suggestion when pressing tab.'),
873
- (0, ide_core_browser_1.localize)('tabCompletion.off', 'Disable tab completions.'),
874
- (0, ide_core_browser_1.localize)('tabCompletion.onlySnippets', "Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."),
872
+ (0, ide_core_browser_1.localize)('editor.configuration.tabCompletion.on', 'Tab complete will insert the best matching suggestion when pressing tab.'),
873
+ (0, ide_core_browser_1.localize)('editor.configuration.tabCompletion.off', 'Disable tab completions.'),
874
+ (0, ide_core_browser_1.localize)('editor.configuration.tabCompletion.onlySnippets', "Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."),
875
875
  ],
876
- description: (0, ide_core_browser_1.localize)('tabCompletion', 'Enables tab completions.'),
876
+ description: '%editor.configuration.tabCompletion%',
877
877
  },
878
878
  'editor.suggest.filteredTypes': {
879
879
  type: 'object',
880
880
  default: { keyword: true, snippet: true },
881
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered', 'Controls whether some suggestion types should be filtered from IntelliSense. A list of suggestion types can be found here: https://code.visualstudio.com/docs/editor/intellisense#_types-of-completions.'),
881
+ markdownDescription: '%editor.configuration.suggest.filtered%',
882
882
  properties: {
883
883
  method: {
884
884
  type: 'boolean',
885
885
  default: true,
886
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.method', 'When set to `false` IntelliSense never shows `method` suggestions.'),
886
+ markdownDescription: (0, ide_core_browser_1.localize)('editor.configuration.suggest.filtered.method', 'When set to `false` IntelliSense never shows `method` suggestions.'),
887
887
  },
888
888
  function: {
889
889
  type: 'boolean',
890
890
  default: true,
891
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.function', 'When set to `false` IntelliSense never shows `function` suggestions.'),
891
+ markdownDescription: '%editor.configuration.suggest.filtered.function%',
892
892
  },
893
893
  constructor: {
894
894
  type: 'boolean',
895
895
  default: true,
896
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.constructor', 'When set to `false` IntelliSense never shows `constructor` suggestions.'),
896
+ markdownDescription: '%editor.configuration.suggest.filtered.constructor%',
897
897
  },
898
898
  field: {
899
899
  type: 'boolean',
900
900
  default: true,
901
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.field', 'When set to `false` IntelliSense never shows `field` suggestions.'),
901
+ markdownDescription: '%editor.configuration.suggest.filtered.field%',
902
902
  },
903
903
  variable: {
904
904
  type: 'boolean',
905
905
  default: true,
906
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.variable', 'When set to `false` IntelliSense never shows `variable` suggestions.'),
906
+ markdownDescription: '%editor.configuration.suggest.filtered.variable%',
907
907
  },
908
908
  class: {
909
909
  type: 'boolean',
910
910
  default: true,
911
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.class', 'When set to `false` IntelliSense never shows `class` suggestions.'),
911
+ markdownDescription: '%editor.configuration.suggest.filtered.class%',
912
912
  },
913
913
  struct: {
914
914
  type: 'boolean',
915
915
  default: true,
916
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.struct', 'When set to `false` IntelliSense never shows `struct` suggestions.'),
916
+ markdownDescription: '%editor.configuration.suggest.filtered.struct%',
917
917
  },
918
918
  interface: {
919
919
  type: 'boolean',
920
920
  default: true,
921
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.interface', 'When set to `false` IntelliSense never shows `interface` suggestions.'),
921
+ markdownDescription: '%editor.configuration.suggest.filtered.interface%',
922
922
  },
923
923
  module: {
924
924
  type: 'boolean',
925
925
  default: true,
926
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.module', 'When set to `false` IntelliSense never shows `module` suggestions.'),
926
+ markdownDescription: '%editor.configuration.suggest.filtered.module%',
927
927
  },
928
928
  property: {
929
929
  type: 'boolean',
930
930
  default: true,
931
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.property', 'When set to `false` IntelliSense never shows `property` suggestions.'),
931
+ markdownDescription: '%editor.configuration.suggest.filtered.property%',
932
932
  },
933
933
  event: {
934
934
  type: 'boolean',
935
935
  default: true,
936
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.event', 'When set to `false` IntelliSense never shows `event` suggestions.'),
936
+ markdownDescription: '%editor.configuration.suggest.filtered.event%',
937
937
  },
938
938
  operator: {
939
939
  type: 'boolean',
940
940
  default: true,
941
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.operator', 'When set to `false` IntelliSense never shows `operator` suggestions.'),
941
+ markdownDescription: '%editor.configuration.suggest.filtered.operator%',
942
942
  },
943
943
  unit: {
944
944
  type: 'boolean',
945
945
  default: true,
946
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.unit', 'When set to `false` IntelliSense never shows `unit` suggestions.'),
946
+ markdownDescription: '%editor.configuration.suggest.filtered.unit%',
947
947
  },
948
948
  value: {
949
949
  type: 'boolean',
950
950
  default: true,
951
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.value', 'When set to `false` IntelliSense never shows `value` suggestions.'),
951
+ markdownDescription: '%editor.configuration.suggest.filtered.value',
952
952
  },
953
953
  constant: {
954
954
  type: 'boolean',
955
955
  default: true,
956
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.constant', 'When set to `false` IntelliSense never shows `constant` suggestions.'),
956
+ markdownDescription: '%editor.configuration.suggest.filtered.constant%',
957
957
  },
958
958
  enum: {
959
959
  type: 'boolean',
960
960
  default: true,
961
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.enum', 'When set to `false` IntelliSense never shows `enum` suggestions.'),
961
+ markdownDescription: '%editor.configuration.suggest.filtered.enum%',
962
962
  },
963
963
  enumMember: {
964
964
  type: 'boolean',
965
965
  default: true,
966
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.enumMember', 'When set to `false` IntelliSense never shows `enumMember` suggestions.'),
966
+ markdownDescription: '%editor.configuration.suggest.filtered.enumMember%',
967
967
  },
968
968
  keyword: {
969
969
  type: 'boolean',
970
970
  default: true,
971
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.keyword', 'When set to `false` IntelliSense never shows `keyword` suggestions.'),
971
+ markdownDescription: '%editor.configuration.suggest.filtered.keyword%',
972
972
  },
973
973
  text: {
974
974
  type: 'boolean',
975
975
  default: true,
976
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.text', 'When set to `false` IntelliSense never shows `text` suggestions.'),
976
+ markdownDescription: '%editor.configuration.suggest.filtered.text%',
977
977
  },
978
978
  color: {
979
979
  type: 'boolean',
980
980
  default: true,
981
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.color', 'When set to `false` IntelliSense never shows `color` suggestions.'),
981
+ markdownDescription: '%editor.configuration.suggest.filtered.color%',
982
982
  },
983
983
  file: {
984
984
  type: 'boolean',
985
985
  default: true,
986
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.file', 'When set to `false` IntelliSense never shows `file` suggestions.'),
986
+ markdownDescription: '%editor.configuration.suggest.filtered.file%',
987
987
  },
988
988
  reference: {
989
989
  type: 'boolean',
990
990
  default: true,
991
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.reference', 'When set to `false` IntelliSense never shows `reference` suggestions.'),
991
+ markdownDescription: '%editor.configuration.suggest.filtered.reference%',
992
992
  },
993
993
  customcolor: {
994
994
  type: 'boolean',
995
995
  default: true,
996
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.customcolor', 'When set to `false` IntelliSense never shows `customcolor` suggestions.'),
996
+ markdownDescription: '%editor.configuration.suggest.filtered.customcolor%',
997
997
  },
998
998
  folder: {
999
999
  type: 'boolean',
1000
1000
  default: true,
1001
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.folder', 'When set to `false` IntelliSense never shows `folder` suggestions.'),
1001
+ markdownDescription: '%editor.configuration.suggest.filtered.folder%',
1002
1002
  },
1003
1003
  typeParameter: {
1004
1004
  type: 'boolean',
1005
1005
  default: true,
1006
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.typeParameter', 'When set to `false` IntelliSense never shows `typeParameter` suggestions.'),
1006
+ markdownDescription: '%editor.configuration.suggest.filtered.typeParameter%',
1007
1007
  },
1008
1008
  snippet: {
1009
1009
  type: 'boolean',
1010
1010
  default: true,
1011
- markdownDescription: (0, ide_core_browser_1.localize)('suggest.filtered.snippet', 'When set to `false` IntelliSense never shows `snippet` suggestions.'),
1011
+ markdownDescription: '%editor.configuration.suggest.filtered.snippet%',
1012
1012
  },
1013
1013
  },
1014
1014
  },
1015
1015
  'editor.gotoLocation.multiple': {
1016
- description: (0, ide_core_browser_1.localize)('editor.gotoLocation.multiple', "Controls the behavior of 'Go To' commands, like Go To Definition, when multiple target locations exist."),
1016
+ description: '%editor.configuration.editor.gotoLocation.multiple%',
1017
1017
  type: 'string',
1018
1018
  enum: ['peek', 'gotoAndPeek', 'goto'],
1019
1019
  default: exports.EDITOR_DEFAULTS.contribInfo.gotoLocation.multiple,
1020
1020
  enumDescriptions: [
1021
- (0, ide_core_browser_1.localize)('editor.gotoLocation.multiple.peek', 'Show peek view of the results (default)'),
1022
- (0, ide_core_browser_1.localize)('editor.gotoLocation.multiple.gotoAndPeek', 'Go to the primary result and show a peek view'),
1023
- (0, ide_core_browser_1.localize)('editor.gotoLocation.multiple.goto', 'Go to the primary result and enable peek-less navigation to others'),
1021
+ (0, ide_core_browser_1.localize)('editor.configuration.gotoLocation.multiple.peek', 'Show peek view of the results (default)'),
1022
+ (0, ide_core_browser_1.localize)('editor.configuration.gotoLocation.multiple.gotoAndPeek', 'Go to the primary result and show a peek view'),
1023
+ (0, ide_core_browser_1.localize)('editor.configuration.gotoLocation.multiple.goto', 'Go to the primary result and enable peek-less navigation to others'),
1024
1024
  ],
1025
1025
  },
1026
1026
  'editor.selectionHighlight': {
1027
1027
  type: 'boolean',
1028
1028
  default: exports.EDITOR_DEFAULTS.contribInfo.selectionHighlight,
1029
- description: (0, ide_core_browser_1.localize)('selectionHighlight', 'Controls whether the editor should highlight matches similar to the selection.'),
1029
+ description: '%editor.configuration.selectionHighlight%',
1030
1030
  },
1031
1031
  'editor.occurrencesHighlight': {
1032
1032
  type: 'boolean',
1033
1033
  default: exports.EDITOR_DEFAULTS.contribInfo.occurrencesHighlight,
1034
- description: (0, ide_core_browser_1.localize)('occurrencesHighlight', 'Controls whether the editor should highlight semantic symbol occurrences.'),
1034
+ description: '%editor.configuration.occurrencesHighlight%',
1035
1035
  },
1036
1036
  'editor.overviewRulerLanes': {
1037
1037
  type: 'integer',
1038
1038
  default: 3,
1039
- description: (0, ide_core_browser_1.localize)('overviewRulerLanes', 'Controls the number of decorations that can show up at the same position in the overview ruler.'),
1039
+ description: '%editor.configuration.overviewRulerLanes%',
1040
1040
  },
1041
1041
  'editor.overviewRulerBorder': {
1042
1042
  type: 'boolean',
1043
1043
  default: exports.EDITOR_DEFAULTS.viewInfo.overviewRulerBorder,
1044
- description: (0, ide_core_browser_1.localize)('overviewRulerBorder', 'Controls whether a border should be drawn around the overview ruler.'),
1044
+ description: '%editor.configuration.overviewRulerBorder%',
1045
1045
  },
1046
1046
  'editor.cursorBlinking': {
1047
1047
  type: 'string',
1048
1048
  enum: ['blink', 'smooth', 'phase', 'expand', 'solid'],
1049
1049
  default: 'blink',
1050
- description: (0, ide_core_browser_1.localize)('cursorBlinking', 'Control the cursor animation style.'),
1050
+ description: '%editor.configuration.cursorBlinking%',
1051
1051
  },
1052
1052
  'editor.mouseWheelZoom': {
1053
1053
  type: 'boolean',
1054
1054
  default: exports.EDITOR_DEFAULTS.viewInfo.mouseWheelZoom,
1055
- markdownDescription: (0, ide_core_browser_1.localize)('mouseWheelZoom', 'Zoom the font of the editor when using mouse wheel and holding `Ctrl`.'),
1055
+ markdownDescription: '%editor.configuration.mouseWheelZoom%',
1056
1056
  },
1057
1057
  'editor.cursorSmoothCaretAnimation': {
1058
1058
  type: 'boolean',
1059
1059
  default: exports.EDITOR_DEFAULTS.viewInfo.cursorSmoothCaretAnimation,
1060
- description: (0, ide_core_browser_1.localize)('cursorSmoothCaretAnimation', 'Controls whether the smooth caret animation should be enabled.'),
1060
+ description: '%editor.configuration.cursorSmoothCaretAnimation%',
1061
1061
  },
1062
1062
  'editor.cursorStyle': {
1063
1063
  type: 'string',
1064
1064
  enum: ['block', 'block-outline', 'line', 'line-thin', 'underline', 'underline-thin'],
1065
1065
  default: exports.EDITOR_FONT_DEFAULTS.cursorStyle,
1066
- description: (0, ide_core_browser_1.localize)('cursorStyle', 'Controls the cursor style.'),
1066
+ description: '%editor.configuration.cursorStyle%',
1067
1067
  },
1068
1068
  'editor.cursorWidth': {
1069
1069
  type: 'integer',
1070
1070
  default: exports.EDITOR_DEFAULTS.viewInfo.cursorWidth,
1071
- markdownDescription: (0, ide_core_browser_1.localize)('cursorWidth', 'Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`.'),
1071
+ markdownDescription: '%editor.configuration.cursorWidth%',
1072
1072
  },
1073
1073
  'editor.fontLigatures': {
1074
1074
  type: 'boolean',
1075
1075
  default: exports.EDITOR_DEFAULTS.viewInfo.fontLigatures,
1076
- description: (0, ide_core_browser_1.localize)('fontLigatures', 'Enables/Disables font ligatures.'),
1076
+ description: '%editor.configuration.fontLigatures%',
1077
1077
  },
1078
1078
  'editor.hideCursorInOverviewRuler': {
1079
1079
  type: 'boolean',
1080
1080
  default: exports.EDITOR_DEFAULTS.viewInfo.hideCursorInOverviewRuler,
1081
- description: (0, ide_core_browser_1.localize)('hideCursorInOverviewRuler', 'Controls whether the cursor should be hidden in the overview ruler.'),
1081
+ description: '%editor.configuration.hideCursorInOverviewRuler%',
1082
1082
  },
1083
1083
  'editor.renderWhitespace': {
1084
1084
  type: 'string',
1085
1085
  enum: ['none', 'boundary', 'selection', 'all'],
1086
1086
  enumDescriptions: [
1087
1087
  '',
1088
- (0, ide_core_browser_1.localize)('renderWhitespace.boundary', 'Render whitespace characters except for single spaces between words.'),
1089
- (0, ide_core_browser_1.localize)('renderWhitespace.selection', 'Render whitespace characters only on selected text.'),
1088
+ (0, ide_core_browser_1.localize)('editor.configuration.renderWhitespace.boundary', 'Render whitespace characters except for single spaces between words.'),
1089
+ (0, ide_core_browser_1.localize)('editor.configuration.renderWhitespace.selection', 'Render whitespace characters only on selected text.'),
1090
1090
  '',
1091
1091
  ],
1092
1092
  default: exports.EDITOR_DEFAULTS.viewInfo.renderWhitespace,
1093
- description: (0, ide_core_browser_1.localize)('renderWhitespace', 'Controls how the editor should render whitespace characters.'),
1093
+ description: '%editor.configuration.renderWhitespace%',
1094
1094
  },
1095
1095
  'editor.rename.enablePreview': {
1096
1096
  type: 'boolean',
1097
1097
  default: true,
1098
- description: 'Enable/disable the ability to preview changes before renaming',
1098
+ description: '%editor.configuration.rename.enablePreview%',
1099
1099
  },
1100
1100
  'editor.renderControlCharacters': {
1101
1101
  type: 'boolean',
1102
1102
  default: exports.EDITOR_DEFAULTS.viewInfo.renderControlCharacters,
1103
- description: (0, ide_core_browser_1.localize)('renderControlCharacters', 'Controls whether the editor should render control characters.'),
1103
+ description: '%editor.configuration.renderControlCharacters%',
1104
1104
  },
1105
1105
  'editor.guides.indentation': {
1106
1106
  type: 'boolean',
1107
1107
  default: exports.EDITOR_DEFAULTS.viewInfo.guides.indentation,
1108
- description: (0, ide_core_browser_1.localize)('editor.guides.indentation', 'Controls whether the editor should render indent guides.'),
1108
+ description: '%editor.configuration.guides.indentation%',
1109
1109
  },
1110
1110
  'editor.guides.highlightActiveIndentation': {
1111
1111
  type: 'boolean',
1112
1112
  default: exports.EDITOR_DEFAULTS.viewInfo.guides.highlightActiveIndentGuide,
1113
- description: (0, ide_core_browser_1.localize)('editor.guides.highlightActiveIndentation', 'Controls whether the editor should highlight the active indent guide.'),
1113
+ description: '%editor.configuration.guides.highlightActiveIndentation%',
1114
1114
  },
1115
1115
  'editor.guides.bracketPairs': {
1116
1116
  type: 'boolean',
1117
1117
  default: exports.EDITOR_DEFAULTS.viewInfo.guides.bracketPairs,
1118
- description: (0, ide_core_browser_1.localize)('editor.configuration.guides.bracketPairs', 'Controls whether bracket pair guides are enabled or not.'),
1118
+ description: '%editor.configuration.guides.bracketPairs%',
1119
1119
  },
1120
1120
  'editor.renderLineHighlight': {
1121
1121
  type: 'string',
@@ -1124,70 +1124,70 @@ const monacoEditorSchema = {
1124
1124
  '',
1125
1125
  '',
1126
1126
  '',
1127
- (0, ide_core_browser_1.localize)('renderLineHighlight.all', 'Highlights both the gutter and the current line.'),
1127
+ (0, ide_core_browser_1.localize)('editor.configuration.renderLineHighlight.all', 'Highlights both the gutter and the current line.'),
1128
1128
  ],
1129
1129
  default: exports.EDITOR_DEFAULTS.viewInfo.renderLineHighlight,
1130
- description: (0, ide_core_browser_1.localize)('renderLineHighlight', 'Controls how the editor should render the current line highlight.'),
1130
+ description: '%editor.configuration.renderLineHighlight%',
1131
1131
  },
1132
1132
  'editor.codeLens': {
1133
1133
  type: 'boolean',
1134
1134
  default: exports.EDITOR_DEFAULTS.contribInfo.codeLens,
1135
- description: (0, ide_core_browser_1.localize)('codeLens', 'Controls whether the editor shows CodeLens.'),
1135
+ description: '%editor.configuration.codeLens%',
1136
1136
  },
1137
1137
  'editor.folding': {
1138
1138
  type: 'boolean',
1139
1139
  default: exports.EDITOR_DEFAULTS.contribInfo.folding,
1140
- description: (0, ide_core_browser_1.localize)('folding', 'Controls whether the editor has code folding enabled.'),
1140
+ description: '%editor.configuration.folding%',
1141
1141
  },
1142
1142
  'editor.foldingStrategy': {
1143
1143
  type: 'string',
1144
1144
  enum: ['auto', 'indentation'],
1145
1145
  default: exports.EDITOR_DEFAULTS.contribInfo.foldingStrategy,
1146
- markdownDescription: (0, ide_core_browser_1.localize)('foldingStrategy', 'Controls the strategy for computing folding ranges. `auto` uses a language specific folding strategy, if available. `indentation` uses the indentation based folding strategy.'),
1146
+ markdownDescription: '%editor.configuration.foldingStrategy%',
1147
1147
  },
1148
1148
  'editor.showFoldingControls': {
1149
1149
  type: 'string',
1150
1150
  enum: ['always', 'mouseover'],
1151
1151
  default: exports.EDITOR_DEFAULTS.contribInfo.showFoldingControls,
1152
- description: (0, ide_core_browser_1.localize)('showFoldingControls', 'Controls whether the fold controls on the gutter are automatically hidden.'),
1152
+ description: '%editor.configuration.showFoldingControls%',
1153
1153
  },
1154
1154
  'editor.matchBrackets': {
1155
1155
  type: 'boolean',
1156
1156
  default: exports.EDITOR_DEFAULTS.contribInfo.matchBrackets,
1157
- description: (0, ide_core_browser_1.localize)('matchBrackets', 'Highlight matching brackets when one of them is selected.'),
1157
+ description: '%editor.configuration.matchBrackets%',
1158
1158
  },
1159
1159
  'editor.glyphMargin': {
1160
1160
  type: 'boolean',
1161
1161
  default: exports.EDITOR_DEFAULTS.viewInfo.glyphMargin,
1162
- description: (0, ide_core_browser_1.localize)('glyphMargin', 'Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging.'),
1162
+ description: '%editor.configuration.glyphMargin%',
1163
1163
  },
1164
1164
  'editor.useTabStops': {
1165
1165
  type: 'boolean',
1166
1166
  default: exports.EDITOR_DEFAULTS.useTabStops,
1167
- description: (0, ide_core_browser_1.localize)('useTabStops', 'Inserting and deleting whitespace follows tab stops.'),
1167
+ description: '%editor.configuration.useTabStops%',
1168
1168
  },
1169
1169
  'editor.trimAutoWhitespace': {
1170
1170
  type: 'boolean',
1171
1171
  default: exports.EDITOR_MODEL_DEFAULTS.trimAutoWhitespace,
1172
- description: (0, ide_core_browser_1.localize)('trimAutoWhitespace', 'Remove trailing auto inserted whitespace.'),
1172
+ description: '%editor.configuration.trimAutoWhitespace%',
1173
1173
  },
1174
1174
  'editor.stablePeek': {
1175
1175
  type: 'boolean',
1176
1176
  default: false,
1177
- markdownDescription: (0, ide_core_browser_1.localize)('stablePeek', 'Keep peek editors open even when double clicking their content or when hitting `Escape`.'),
1177
+ markdownDescription: '%editor.configuration.stablePeek%',
1178
1178
  },
1179
1179
  'editor.dragAndDrop': {
1180
1180
  type: 'boolean',
1181
1181
  default: exports.EDITOR_DEFAULTS.dragAndDrop,
1182
- description: (0, ide_core_browser_1.localize)('dragAndDrop', 'Controls whether the editor should allow moving selections via drag and drop.'),
1182
+ description: '%editor.configuration.dragAndDrop%',
1183
1183
  },
1184
1184
  'editor.accessibilitySupport': {
1185
1185
  type: 'string',
1186
1186
  enum: ['auto', 'on', 'off'],
1187
1187
  enumDescriptions: [
1188
- (0, ide_core_browser_1.localize)('accessibilitySupport.auto', 'The editor will use platform APIs to detect when a Screen Reader is attached.'),
1189
- (0, ide_core_browser_1.localize)('accessibilitySupport.on', 'The editor will be permanently optimized for usage with a Screen Reader.'),
1190
- (0, ide_core_browser_1.localize)('accessibilitySupport.off', 'The editor will never be optimized for usage with a Screen Reader.'),
1188
+ (0, ide_core_browser_1.localize)('editor.configuration.accessibilitySupport.auto', 'The editor will use platform APIs to detect when a Screen Reader is attached.'),
1189
+ (0, ide_core_browser_1.localize)('editor.configuration.accessibilitySupport.on', 'The editor will be permanently optimized for usage with a Screen Reader.'),
1190
+ (0, ide_core_browser_1.localize)('editor.configuration.accessibilitySupport.off', 'The editor will never be optimized for usage with a Screen Reader.'),
1191
1191
  ],
1192
1192
  default: exports.EDITOR_DEFAULTS.accessibilitySupport,
1193
1193
  description: (0, ide_core_browser_1.localize)('accessibilitySupport', 'Controls whether the editor should run in a mode where it is optimized for screen readers.'),
@@ -1195,86 +1195,86 @@ const monacoEditorSchema = {
1195
1195
  'editor.showUnused': {
1196
1196
  type: 'boolean',
1197
1197
  default: exports.EDITOR_DEFAULTS.showUnused,
1198
- description: (0, ide_core_browser_1.localize)('showUnused', 'Controls fading out of unused code.'),
1198
+ description: '%editor.configuration.showUnused%',
1199
1199
  },
1200
1200
  'editor.comments.insertSpace': {
1201
1201
  type: 'boolean',
1202
1202
  default: true,
1203
- description: (0, ide_core_browser_1.localize)('insertSpace', 'Insert a space after the line comment token and inside the block comments tokens.'),
1203
+ description: '%editor.configuration.comments.insertSpace%',
1204
1204
  },
1205
1205
  'editor.comments.ignoreEmptyLines': {
1206
1206
  type: 'boolean',
1207
1207
  default: true,
1208
- description: (0, ide_core_browser_1.localize)('insertSpace', 'Ignore empty lines when inserting line comments.'),
1208
+ description: '%editor.configuration.comments.ignoreEmptyLines%',
1209
1209
  },
1210
1210
  'editor.links': {
1211
1211
  type: 'boolean',
1212
1212
  default: exports.EDITOR_DEFAULTS.contribInfo.links,
1213
- description: (0, ide_core_browser_1.localize)('links', 'Controls whether the editor should detect links and make them clickable.'),
1213
+ description: '%editor.configuration.links%',
1214
1214
  },
1215
1215
  'editor.colorDecorators': {
1216
1216
  type: 'boolean',
1217
1217
  default: exports.EDITOR_DEFAULTS.contribInfo.colorDecorators,
1218
- description: (0, ide_core_browser_1.localize)('colorDecorators', 'Controls whether the editor should render the inline color decorators and color picker.'),
1218
+ description: '%editor.configuration.colorDecorators%',
1219
1219
  },
1220
1220
  'editor.lightbulb.enabled': {
1221
1221
  type: 'boolean',
1222
1222
  default: exports.EDITOR_DEFAULTS.contribInfo.lightbulbEnabled,
1223
- description: (0, ide_core_browser_1.localize)('codeActions', 'Enables the code action lightbulb in the editor.'),
1223
+ description: '%editor.configuration.lightbulb.enabled%',
1224
1224
  },
1225
1225
  'editor.maxTokenizationLineLength': {
1226
1226
  type: 'integer',
1227
1227
  default: 20000,
1228
- description: (0, ide_core_browser_1.localize)('maxTokenizationLineLength', 'Lines above this length will not be tokenized for performance reasons'),
1228
+ description: '%editor.configuration.maxTokenizationLineLength%',
1229
1229
  },
1230
1230
  'editor.codeActionsOnSave': {
1231
1231
  type: 'object',
1232
1232
  properties: {
1233
1233
  'source.organizeImports': {
1234
1234
  type: 'boolean',
1235
- description: (0, ide_core_browser_1.localize)('codeActionsOnSave.organizeImports', 'Controls whether organize imports action should be run on file save.'),
1235
+ description: '%editor.configuration.codeActionsOnSave.organizeImports%',
1236
1236
  },
1237
1237
  'source.fixAll': {
1238
1238
  type: 'boolean',
1239
- description: (0, ide_core_browser_1.localize)('codeActionsOnSave.fixAll', 'Controls whether auto fix action should be run on file save.'),
1239
+ description: '%editor.configuration.codeActionsOnSave.fixAll%',
1240
1240
  },
1241
1241
  },
1242
1242
  additionalProperties: {
1243
1243
  type: 'boolean',
1244
1244
  },
1245
1245
  default: exports.EDITOR_DEFAULTS.contribInfo.codeActionsOnSave,
1246
- description: (0, ide_core_browser_1.localize)('codeActionsOnSave', 'Code action kinds to be run on save.'),
1246
+ description: '%editor.configuration.codeActionsOnSave%',
1247
1247
  },
1248
1248
  'editor.codeActionsOnSaveTimeout': {
1249
1249
  type: 'number',
1250
1250
  default: exports.EDITOR_DEFAULTS.contribInfo.codeActionsOnSaveTimeout,
1251
- description: (0, ide_core_browser_1.localize)('codeActionsOnSaveTimeout', 'Timeout in milliseconds after which the code actions that are run on save are cancelled.'),
1251
+ description: '%editor.configuration.codeActionsOnSaveTimeout%',
1252
1252
  },
1253
1253
  'editor.selectionClipboard': {
1254
1254
  type: 'boolean',
1255
1255
  default: exports.EDITOR_DEFAULTS.contribInfo.selectionClipboard,
1256
- description: (0, ide_core_browser_1.localize)('selectionClipboard', 'Controls whether the Linux primary clipboard should be supported.'),
1256
+ description: '%editor.configuration.selectionClipboard%',
1257
1257
  included: ide_core_browser_1.isLinux,
1258
1258
  },
1259
1259
  'editor.largeFileOptimizations': {
1260
1260
  type: 'boolean',
1261
1261
  default: exports.EDITOR_MODEL_DEFAULTS.largeFileOptimizations,
1262
- description: (0, ide_core_browser_1.localize)('largeFileOptimizations', 'Special handling for large files to disable certain memory intensive features.'),
1262
+ description: '%editor.configuration.largeFileOptimizations%',
1263
1263
  },
1264
1264
  'diffEditor.renderIndicators': {
1265
1265
  type: 'boolean',
1266
1266
  default: true,
1267
- description: (0, ide_core_browser_1.localize)('renderIndicators', 'Controls whether the diff editor shows +/- indicators for added/removed changes.'),
1267
+ description: '%editor.configuration.renderIndicators%',
1268
1268
  },
1269
1269
  'editor.defaultFormatter': {
1270
1270
  type: 'string',
1271
- description: (0, ide_core_browser_1.localize)('defaultFormatter', 'Default code formatter'),
1271
+ description: '%editor.configuration.defaultFormatter%',
1272
1272
  },
1273
1273
  };
1274
1274
  const customEditorSchema = {
1275
1275
  'editor.tokenColorCustomizations': {
1276
1276
  type: 'object',
1277
- description: '%preference.editor.tokenColorCustomizations%',
1277
+ description: '%editor.configuration.tokenColorCustomizations%',
1278
1278
  default: {},
1279
1279
  },
1280
1280
  'editor.askIfDiff': {
@@ -1401,7 +1401,7 @@ const customEditorSchema = {
1401
1401
  'editor.formatOnSave': {
1402
1402
  type: 'boolean',
1403
1403
  default: false,
1404
- description: '%preference.editor.formatOnSave%',
1404
+ description: '%editor.configuration.formatOnSave%',
1405
1405
  },
1406
1406
  'editor.formatOnSaveTimeout': {
1407
1407
  type: 'number',
@@ -1421,12 +1421,12 @@ const customEditorSchema = {
1421
1421
  'editor.semanticHighlighting.enabled': {
1422
1422
  enum: [true, false, 'configuredByTheme'],
1423
1423
  enumDescriptions: [
1424
- (0, ide_core_browser_1.localize)('semanticHighlighting.true', 'Semantic highlighting enabled for all color themes.'),
1425
- (0, ide_core_browser_1.localize)('semanticHighlighting.false', 'Semantic highlighting disabled for all color themes.'),
1426
- (0, ide_core_browser_1.localize)('semanticHighlighting.configuredByTheme', "Semantic highlighting is configured by the current color theme's `semanticHighlighting` setting."),
1424
+ (0, ide_core_browser_1.localize)('editor.configuration.semanticHighlighting.true', 'Semantic highlighting enabled for all color themes.'),
1425
+ (0, ide_core_browser_1.localize)('editor.configuration.semanticHighlighting.false', 'Semantic highlighting disabled for all color themes.'),
1426
+ (0, ide_core_browser_1.localize)('editor.configuration.semanticHighlighting.configuredByTheme', "Semantic highlighting is configured by the current color theme's `semanticHighlighting` setting."),
1427
1427
  ],
1428
1428
  default: true,
1429
- description: (0, ide_core_browser_1.localize)('semanticHighlighting.enabled', 'Controls whether the semanticHighlighting is shown for the languages that support it.'),
1429
+ description: '%editor.configuration.semanticHighlighting.enabled%',
1430
1430
  },
1431
1431
  'editor.bracketPairColorization.enabled': {
1432
1432
  type: 'boolean',
@@ -1449,7 +1449,7 @@ const customEditorSchema = {
1449
1449
  },
1450
1450
  'workbench.editorAssociations': {
1451
1451
  type: 'object',
1452
- markdownDescription: '%preference.workbench.editorAssociations%',
1452
+ markdownDescription: '%editor.configuration.workbench.editorAssociations%',
1453
1453
  default: {},
1454
1454
  additionalProperties: {
1455
1455
  type: 'string',
@@ -1468,7 +1468,7 @@ const customEditorSchema = {
1468
1468
  'editor.experimental.stickyScroll.enabled': {
1469
1469
  type: 'boolean',
1470
1470
  default: false,
1471
- description: '%editor.experimental.stickyScroll.enabled.description%',
1471
+ description: '%editor.configuration.experimental.stickyScroll.enabled%',
1472
1472
  },
1473
1473
  'editor.mouseBackForwardToNavigate': {
1474
1474
  type: 'boolean',