@theia/editor 1.49.0 → 1.50.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.
Files changed (66) hide show
  1. package/lib/browser/decorations/editor-decoration-style.js.map +1 -1
  2. package/lib/browser/decorations/editor-decoration.js +3 -3
  3. package/lib/browser/decorations/editor-decoration.js.map +1 -1
  4. package/lib/browser/decorations/editor-decorator.js +2 -2
  5. package/lib/browser/decorations/editor-decorator.js.map +1 -1
  6. package/lib/browser/decorations/index.js +3 -3
  7. package/lib/browser/decorations/index.js.map +1 -1
  8. package/lib/browser/diff-navigator.d.ts +1 -1
  9. package/lib/browser/diff-navigator.d.ts.map +1 -1
  10. package/lib/browser/editor-command.d.ts +4 -5
  11. package/lib/browser/editor-command.d.ts.map +1 -1
  12. package/lib/browser/editor-command.js +75 -68
  13. package/lib/browser/editor-command.js.map +1 -1
  14. package/lib/browser/editor-contribution.js +14 -14
  15. package/lib/browser/editor-contribution.js.map +1 -1
  16. package/lib/browser/editor-generated-preference-schema.d.ts +2 -1
  17. package/lib/browser/editor-generated-preference-schema.d.ts.map +1 -1
  18. package/lib/browser/editor-generated-preference-schema.js +262 -14
  19. package/lib/browser/editor-generated-preference-schema.js.map +1 -1
  20. package/lib/browser/editor-keybinding.js +2 -2
  21. package/lib/browser/editor-keybinding.js.map +1 -1
  22. package/lib/browser/editor-language-quick-pick-service.js +8 -8
  23. package/lib/browser/editor-language-quick-pick-service.js.map +1 -1
  24. package/lib/browser/editor-linenumber-contribution.js +9 -9
  25. package/lib/browser/editor-linenumber-contribution.js.map +1 -1
  26. package/lib/browser/editor-manager.js +21 -22
  27. package/lib/browser/editor-manager.js.map +1 -1
  28. package/lib/browser/editor-menu.js +4 -4
  29. package/lib/browser/editor-menu.js.map +1 -1
  30. package/lib/browser/editor-navigation-contribution.js +18 -18
  31. package/lib/browser/editor-navigation-contribution.js.map +1 -1
  32. package/lib/browser/editor-preferences.d.ts +3 -3
  33. package/lib/browser/editor-preferences.d.ts.map +1 -1
  34. package/lib/browser/editor-variable-contribution.js +4 -4
  35. package/lib/browser/editor-variable-contribution.js.map +1 -1
  36. package/lib/browser/editor-widget-factory.js +8 -8
  37. package/lib/browser/editor-widget-factory.js.map +1 -1
  38. package/lib/browser/editor-widget.js.map +1 -1
  39. package/lib/browser/editor.d.ts +1 -1
  40. package/lib/browser/editor.d.ts.map +1 -1
  41. package/lib/browser/editor.js +3 -3
  42. package/lib/browser/editor.js.map +1 -1
  43. package/lib/browser/index.js +10 -10
  44. package/lib/browser/index.js.map +1 -1
  45. package/lib/browser/language-status/editor-language-status-service.js +13 -13
  46. package/lib/browser/language-status/editor-language-status-service.js.map +1 -1
  47. package/lib/browser/navigation/navigation-location-service.js +10 -10
  48. package/lib/browser/navigation/navigation-location-service.js.map +1 -1
  49. package/lib/browser/navigation/navigation-location-service.spec.js.map +1 -1
  50. package/lib/browser/navigation/navigation-location-similarity.js +2 -2
  51. package/lib/browser/navigation/navigation-location-similarity.js.map +1 -1
  52. package/lib/browser/navigation/navigation-location-updater.js +2 -2
  53. package/lib/browser/navigation/navigation-location-updater.js.map +1 -1
  54. package/lib/browser/navigation/navigation-location-updater.spec.js.map +1 -1
  55. package/lib/browser/navigation/navigation-location.js +6 -6
  56. package/lib/browser/navigation/navigation-location.js.map +1 -1
  57. package/lib/browser/quick-editor-service.js +8 -8
  58. package/lib/browser/quick-editor-service.js.map +1 -1
  59. package/lib/browser/undo-redo-service.js +2 -2
  60. package/lib/browser/undo-redo-service.js.map +1 -1
  61. package/lib/common/language-selector.d.ts +1 -1
  62. package/lib/common/language-selector.d.ts.map +1 -1
  63. package/lib/common/language-selector.js.map +1 -1
  64. package/package.json +5 -5
  65. package/src/browser/editor-command.ts +17 -12
  66. package/src/browser/editor-generated-preference-schema.ts +263 -14
@@ -31,6 +31,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
31
31
  "default": 4,
32
32
  "minimum": 1,
33
33
  "markdownDescription": nls.localize("theia/editor/editor.tabSize", "The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on."),
34
+ "scope": "language-overridable",
34
35
  "restricted": false
35
36
  },
36
37
  "editor.indentSize": {
@@ -48,36 +49,42 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
48
49
  ],
49
50
  "default": "tabSize",
50
51
  "markdownDescription": nls.localizeByDefault("The number of spaces used for indentation or `\"tabSize\"` to use the value from `#editor.tabSize#`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on."),
52
+ "scope": "language-overridable",
51
53
  "restricted": false
52
54
  },
53
55
  "editor.insertSpaces": {
54
56
  "type": "boolean",
55
57
  "default": true,
56
58
  "markdownDescription": nls.localize("theia/editor/editor.insertSpaces", "Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on."),
59
+ "scope": "language-overridable",
57
60
  "restricted": false
58
61
  },
59
62
  "editor.detectIndentation": {
60
63
  "type": "boolean",
61
64
  "default": true,
62
65
  "markdownDescription": nls.localize("theia/editor/editor.detectIndentation", "Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents."),
66
+ "scope": "language-overridable",
63
67
  "restricted": false
64
68
  },
65
69
  "editor.trimAutoWhitespace": {
66
70
  "type": "boolean",
67
71
  "default": true,
68
72
  "description": nls.localizeByDefault("Remove trailing auto inserted whitespace."),
73
+ "scope": "language-overridable",
69
74
  "restricted": false
70
75
  },
71
76
  "editor.largeFileOptimizations": {
72
77
  "type": "boolean",
73
78
  "default": true,
74
79
  "description": nls.localizeByDefault("Special handling for large files to disable certain memory intensive features."),
80
+ "scope": "language-overridable",
75
81
  "restricted": false
76
82
  },
77
83
  "editor.wordBasedSuggestions": {
78
84
  "type": "boolean",
79
85
  "default": true,
80
- "description": nls.localizeByDefault("Controls whether completions should be computed based on words in the document."),
86
+ "description": nls.localize("theia/editor/editor.wordBasedSuggestions", "Controls whether completions should be computed based on words in the document."),
87
+ "scope": "language-overridable",
81
88
  "restricted": false
82
89
  },
83
90
  "editor.wordBasedSuggestionsMode": {
@@ -92,7 +99,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
92
99
  nls.localizeByDefault("Suggest words from all open documents of the same language."),
93
100
  nls.localizeByDefault("Suggest words from all open documents.")
94
101
  ],
95
- "description": nls.localizeByDefault("Controls from which documents word based completions are computed."),
102
+ "description": nls.localize("theia/editor/editor.wordBasedSuggestionsMode", "Controls from which documents word based completions are computed."),
103
+ "scope": "language-overridable",
96
104
  "restricted": false
97
105
  },
98
106
  "editor.semanticHighlighting.enabled": {
@@ -108,18 +116,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
108
116
  ],
109
117
  "default": "configuredByTheme",
110
118
  "description": nls.localizeByDefault("Controls whether the semanticHighlighting is shown for the languages that support it."),
119
+ "scope": "language-overridable",
111
120
  "restricted": false
112
121
  },
113
122
  "editor.stablePeek": {
114
123
  "type": "boolean",
115
124
  "default": false,
116
125
  "markdownDescription": nls.localizeByDefault("Keep peek editors open even when double-clicking their content or when hitting `Escape`."),
126
+ "scope": "language-overridable",
117
127
  "restricted": false
118
128
  },
119
129
  "editor.maxTokenizationLineLength": {
120
130
  "type": "integer",
121
131
  "default": 20000,
122
132
  "description": nls.localizeByDefault("Lines above this length will not be tokenized for performance reasons"),
133
+ "scope": "language-overridable",
123
134
  "restricted": false
124
135
  },
125
136
  "editor.experimental.asyncTokenization": {
@@ -129,12 +140,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
129
140
  "tags": [
130
141
  "experimental"
131
142
  ],
143
+ "scope": "language-overridable",
132
144
  "restricted": false
133
145
  },
134
146
  "editor.experimental.asyncTokenizationLogging": {
135
147
  "type": "boolean",
136
148
  "default": false,
137
149
  "description": nls.localizeByDefault("Controls whether async tokenization should be logged. For debugging only."),
150
+ "scope": "language-overridable",
138
151
  "restricted": false
139
152
  },
140
153
  "editor.experimental.asyncTokenizationVerification": {
@@ -144,6 +157,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
144
157
  "tags": [
145
158
  "experimental"
146
159
  ],
160
+ "scope": "language-overridable",
147
161
  "restricted": false
148
162
  },
149
163
  "editor.language.brackets": {
@@ -166,6 +180,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
166
180
  }
167
181
  ]
168
182
  },
183
+ "scope": "language-overridable",
169
184
  "restricted": false
170
185
  },
171
186
  "editor.language.colorizedBracketPairs": {
@@ -188,60 +203,70 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
188
203
  }
189
204
  ]
190
205
  },
206
+ "scope": "language-overridable",
191
207
  "restricted": false
192
208
  },
193
209
  "diffEditor.maxComputationTime": {
194
210
  "type": "number",
195
211
  "default": 5000,
196
212
  "description": nls.localizeByDefault("Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout."),
213
+ "scope": "language-overridable",
197
214
  "restricted": false
198
215
  },
199
216
  "diffEditor.maxFileSize": {
200
217
  "type": "number",
201
218
  "default": 50,
202
219
  "description": nls.localizeByDefault("Maximum file size in MB for which to compute diffs. Use 0 for no limit."),
220
+ "scope": "language-overridable",
203
221
  "restricted": false
204
222
  },
205
223
  "diffEditor.renderSideBySide": {
206
224
  "type": "boolean",
207
225
  "default": true,
208
226
  "description": nls.localizeByDefault("Controls whether the diff editor shows the diff side by side or inline."),
227
+ "scope": "language-overridable",
209
228
  "restricted": false
210
229
  },
211
230
  "diffEditor.renderSideBySideInlineBreakpoint": {
212
231
  "type": "number",
213
232
  "default": 900,
214
233
  "description": nls.localizeByDefault("If the diff editor width is smaller than this value, the inline view is used."),
234
+ "scope": "language-overridable",
215
235
  "restricted": false
216
236
  },
217
237
  "diffEditor.useInlineViewWhenSpaceIsLimited": {
218
238
  "type": "boolean",
219
239
  "default": true,
220
240
  "description": nls.localizeByDefault("If enabled and the editor width is too small, the inline view is used."),
241
+ "scope": "language-overridable",
221
242
  "restricted": false
222
243
  },
223
244
  "diffEditor.renderMarginRevertIcon": {
224
245
  "type": "boolean",
225
246
  "default": true,
226
247
  "description": nls.localizeByDefault("When enabled, the diff editor shows arrows in its glyph margin to revert changes."),
248
+ "scope": "language-overridable",
227
249
  "restricted": false
228
250
  },
229
251
  "diffEditor.ignoreTrimWhitespace": {
230
252
  "type": "boolean",
231
253
  "default": true,
232
254
  "description": nls.localizeByDefault("When enabled, the diff editor ignores changes in leading or trailing whitespace."),
255
+ "scope": "language-overridable",
233
256
  "restricted": false
234
257
  },
235
258
  "diffEditor.renderIndicators": {
236
259
  "type": "boolean",
237
260
  "default": true,
238
261
  "description": nls.localizeByDefault("Controls whether the diff editor shows +/- indicators for added/removed changes."),
262
+ "scope": "language-overridable",
239
263
  "restricted": false
240
264
  },
241
265
  "diffEditor.codeLens": {
242
266
  "type": "boolean",
243
267
  "default": false,
244
268
  "description": nls.localizeByDefault("Controls whether the editor shows CodeLens."),
269
+ "scope": "language-overridable",
245
270
  "restricted": false
246
271
  },
247
272
  "diffEditor.wordWrap": {
@@ -257,6 +282,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
257
282
  nls.localizeByDefault("Lines will wrap at the viewport width."),
258
283
  nls.localize("theia/editor/diffEditor.wordWrap2", "Lines will wrap according to the `#editor.wordWrap#` setting.")
259
284
  ],
285
+ "scope": "language-overridable",
260
286
  "restricted": false
261
287
  },
262
288
  "diffEditor.diffAlgorithm": {
@@ -273,12 +299,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
273
299
  "tags": [
274
300
  "experimental"
275
301
  ],
302
+ "scope": "language-overridable",
276
303
  "restricted": false
277
304
  },
278
305
  "diffEditor.hideUnchangedRegions.enabled": {
279
306
  "type": "boolean",
280
307
  "default": false,
281
308
  "markdownDescription": nls.localizeByDefault("Controls whether the diff editor shows unchanged regions."),
309
+ "scope": "language-overridable",
282
310
  "restricted": false
283
311
  },
284
312
  "diffEditor.hideUnchangedRegions.revealLineCount": {
@@ -286,6 +314,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
286
314
  "default": 20,
287
315
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used for unchanged regions."),
288
316
  "minimum": 1,
317
+ "scope": "language-overridable",
289
318
  "restricted": false
290
319
  },
291
320
  "diffEditor.hideUnchangedRegions.minimumLineCount": {
@@ -293,6 +322,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
293
322
  "default": 3,
294
323
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used as a minimum for unchanged regions."),
295
324
  "minimum": 1,
325
+ "scope": "language-overridable",
296
326
  "restricted": false
297
327
  },
298
328
  "diffEditor.hideUnchangedRegions.contextLineCount": {
@@ -300,24 +330,28 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
300
330
  "default": 3,
301
331
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used as context when comparing unchanged regions."),
302
332
  "minimum": 1,
333
+ "scope": "language-overridable",
303
334
  "restricted": false
304
335
  },
305
336
  "diffEditor.experimental.showMoves": {
306
337
  "type": "boolean",
307
338
  "default": false,
308
339
  "markdownDescription": nls.localizeByDefault("Controls whether the diff editor should show detected code moves."),
340
+ "scope": "language-overridable",
309
341
  "restricted": false
310
342
  },
311
343
  "diffEditor.experimental.showEmptyDecorations": {
312
344
  "type": "boolean",
313
345
  "default": true,
314
346
  "description": nls.localizeByDefault("Controls whether the diff editor shows empty decorations to see where characters got inserted or deleted."),
347
+ "scope": "language-overridable",
315
348
  "restricted": false
316
349
  },
317
350
  "editor.acceptSuggestionOnCommitCharacter": {
318
351
  "markdownDescription": nls.localizeByDefault("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."),
319
352
  "type": "boolean",
320
353
  "default": true,
354
+ "scope": "language-overridable",
321
355
  "restricted": false
322
356
  },
323
357
  "editor.acceptSuggestionOnEnter": {
@@ -334,6 +368,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
334
368
  "off"
335
369
  ],
336
370
  "default": "on",
371
+ "scope": "language-overridable",
337
372
  "restricted": false
338
373
  },
339
374
  "editor.accessibilitySupport": {
@@ -353,6 +388,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
353
388
  "accessibility"
354
389
  ],
355
390
  "description": nls.localizeByDefault("Controls if the UI should run in a mode where it is optimized for screen readers."),
391
+ "scope": "language-overridable",
356
392
  "restricted": false
357
393
  },
358
394
  "editor.accessibilityPageSize": {
@@ -364,6 +400,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
364
400
  "default": 10,
365
401
  "minimum": 1,
366
402
  "maximum": 1073741824,
403
+ "scope": "language-overridable",
367
404
  "restricted": false
368
405
  },
369
406
  "editor.autoClosingBrackets": {
@@ -382,6 +419,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
382
419
  "never"
383
420
  ],
384
421
  "default": "languageDefined",
422
+ "scope": "language-overridable",
385
423
  "restricted": false
386
424
  },
387
425
  "editor.autoClosingComments": {
@@ -400,6 +438,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
400
438
  "never"
401
439
  ],
402
440
  "default": "languageDefined",
441
+ "scope": "language-overridable",
403
442
  "restricted": false
404
443
  },
405
444
  "editor.screenReaderAnnounceInlineSuggestion": {
@@ -409,6 +448,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
409
448
  ],
410
449
  "type": "boolean",
411
450
  "default": true,
451
+ "scope": "language-overridable",
412
452
  "restricted": false
413
453
  },
414
454
  "editor.autoClosingDelete": {
@@ -425,6 +465,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
425
465
  "never"
426
466
  ],
427
467
  "default": "auto",
468
+ "scope": "language-overridable",
428
469
  "restricted": false
429
470
  },
430
471
  "editor.autoClosingOvertype": {
@@ -441,6 +482,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
441
482
  "never"
442
483
  ],
443
484
  "default": "auto",
485
+ "scope": "language-overridable",
444
486
  "restricted": false
445
487
  },
446
488
  "editor.autoClosingQuotes": {
@@ -459,6 +501,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
459
501
  "never"
460
502
  ],
461
503
  "default": "languageDefined",
504
+ "scope": "language-overridable",
462
505
  "restricted": false
463
506
  },
464
507
  "editor.autoIndent": {
@@ -479,6 +522,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
479
522
  "full"
480
523
  ],
481
524
  "default": "full",
525
+ "scope": "language-overridable",
482
526
  "restricted": false
483
527
  },
484
528
  "editor.autoSurround": {
@@ -497,18 +541,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
497
541
  "never"
498
542
  ],
499
543
  "default": "languageDefined",
544
+ "scope": "language-overridable",
500
545
  "restricted": false
501
546
  },
502
547
  "editor.bracketPairColorization.enabled": {
503
548
  "type": "boolean",
504
549
  "default": true,
505
550
  "markdownDescription": nls.localize("theia/editor/editor.bracketPairColorization.enabled", "Controls whether bracket pair colorization is enabled or not. Use `#workbench.colorCustomizations#` to override the bracket highlight colors."),
551
+ "scope": "language-overridable",
506
552
  "restricted": false
507
553
  },
508
554
  "editor.bracketPairColorization.independentColorPoolPerBracketType": {
509
555
  "type": "boolean",
510
556
  "default": false,
511
557
  "description": nls.localizeByDefault("Controls whether each bracket type has its own independent color pool."),
558
+ "scope": "language-overridable",
512
559
  "restricted": false
513
560
  },
514
561
  "editor.guides.bracketPairs": {
@@ -528,6 +575,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
528
575
  ],
529
576
  "default": false,
530
577
  "description": nls.localizeByDefault("Controls whether bracket pair guides are enabled or not."),
578
+ "scope": "language-overridable",
531
579
  "restricted": false
532
580
  },
533
581
  "editor.guides.bracketPairsHorizontal": {
@@ -547,18 +595,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
547
595
  ],
548
596
  "default": "active",
549
597
  "description": nls.localizeByDefault("Controls whether horizontal bracket pair guides are enabled or not."),
598
+ "scope": "language-overridable",
550
599
  "restricted": false
551
600
  },
552
601
  "editor.guides.highlightActiveBracketPair": {
553
602
  "type": "boolean",
554
603
  "default": true,
555
604
  "description": nls.localizeByDefault("Controls whether the editor should highlight the active bracket pair."),
605
+ "scope": "language-overridable",
556
606
  "restricted": false
557
607
  },
558
608
  "editor.guides.indentation": {
559
609
  "type": "boolean",
560
610
  "default": true,
561
611
  "description": nls.localizeByDefault("Controls whether the editor should render indent guides."),
612
+ "scope": "language-overridable",
562
613
  "restricted": false
563
614
  },
564
615
  "editor.guides.highlightActiveIndentation": {
@@ -578,18 +629,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
578
629
  ],
579
630
  "default": true,
580
631
  "description": nls.localizeByDefault("Controls whether the editor should highlight the active indent guide."),
632
+ "scope": "language-overridable",
581
633
  "restricted": false
582
634
  },
583
635
  "editor.codeLens": {
584
636
  "description": nls.localizeByDefault("Controls whether the editor shows CodeLens."),
585
637
  "type": "boolean",
586
638
  "default": true,
639
+ "scope": "language-overridable",
587
640
  "restricted": false
588
641
  },
589
642
  "editor.codeLensFontFamily": {
590
643
  "description": nls.localizeByDefault("Controls the font family for CodeLens."),
591
644
  "type": "string",
592
645
  "default": "",
646
+ "scope": "language-overridable",
593
647
  "restricted": false
594
648
  },
595
649
  "editor.codeLensFontSize": {
@@ -598,12 +652,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
598
652
  "minimum": 0,
599
653
  "maximum": 100,
600
654
  "markdownDescription": nls.localizeByDefault("Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."),
655
+ "scope": "language-overridable",
601
656
  "restricted": false
602
657
  },
603
658
  "editor.colorDecorators": {
604
659
  "description": nls.localizeByDefault("Controls whether the editor should render the inline color decorators and color picker."),
605
660
  "type": "boolean",
606
661
  "default": true,
662
+ "scope": "language-overridable",
607
663
  "restricted": false
608
664
  },
609
665
  "editor.colorDecoratorsLimit": {
@@ -612,30 +668,35 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
612
668
  "default": 500,
613
669
  "minimum": 1,
614
670
  "maximum": 1000000,
671
+ "scope": "language-overridable",
615
672
  "restricted": false
616
673
  },
617
674
  "editor.columnSelection": {
618
675
  "description": nls.localizeByDefault("Enable that the selection with the mouse and keys is doing column selection."),
619
676
  "type": "boolean",
620
677
  "default": false,
678
+ "scope": "language-overridable",
621
679
  "restricted": false
622
680
  },
623
681
  "editor.comments.insertSpace": {
624
682
  "type": "boolean",
625
683
  "default": true,
626
684
  "description": nls.localizeByDefault("Controls whether a space character is inserted when commenting."),
685
+ "scope": "language-overridable",
627
686
  "restricted": false
628
687
  },
629
688
  "editor.comments.ignoreEmptyLines": {
630
689
  "type": "boolean",
631
690
  "default": true,
632
691
  "description": nls.localizeByDefault("Controls if empty lines should be ignored with toggle, add or remove actions for line comments."),
692
+ "scope": "language-overridable",
633
693
  "restricted": false
634
694
  },
635
695
  "editor.copyWithSyntaxHighlighting": {
636
696
  "description": nls.localizeByDefault("Controls whether syntax highlighting should be copied into the clipboard."),
637
697
  "type": "boolean",
638
698
  "default": true,
699
+ "scope": "language-overridable",
639
700
  "restricted": false
640
701
  },
641
702
  "editor.cursorBlinking": {
@@ -649,6 +710,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
649
710
  "solid"
650
711
  ],
651
712
  "default": "blink",
713
+ "scope": "language-overridable",
652
714
  "restricted": false
653
715
  },
654
716
  "editor.cursorSmoothCaretAnimation": {
@@ -665,6 +727,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
665
727
  "on"
666
728
  ],
667
729
  "default": "off",
730
+ "scope": "language-overridable",
668
731
  "restricted": false
669
732
  },
670
733
  "editor.cursorStyle": {
@@ -679,6 +742,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
679
742
  "underline-thin"
680
743
  ],
681
744
  "default": "line",
745
+ "scope": "language-overridable",
682
746
  "restricted": false
683
747
  },
684
748
  "editor.cursorSurroundingLines": {
@@ -687,6 +751,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
687
751
  "default": 0,
688
752
  "minimum": 0,
689
753
  "maximum": 1073741824,
754
+ "scope": "language-overridable",
690
755
  "restricted": false
691
756
  },
692
757
  "editor.cursorSurroundingLinesStyle": {
@@ -694,13 +759,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
694
759
  nls.localizeByDefault("`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."),
695
760
  nls.localizeByDefault("`cursorSurroundingLines` is enforced always.")
696
761
  ],
697
- "markdownDescription": nls.localizeByDefault("Controls when `#cursorSurroundingLines#` should be enforced."),
762
+ "markdownDescription": nls.localize("theia/editor/editor.cursorSurroundingLinesStyle", "Controls when `#cursorSurroundingLines#` should be enforced."),
698
763
  "type": "string",
699
764
  "enum": [
700
765
  "default",
701
766
  "all"
702
767
  ],
703
768
  "default": "default",
769
+ "scope": "language-overridable",
704
770
  "restricted": false
705
771
  },
706
772
  "editor.cursorWidth": {
@@ -709,18 +775,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
709
775
  "default": 0,
710
776
  "minimum": 0,
711
777
  "maximum": 1073741824,
778
+ "scope": "language-overridable",
712
779
  "restricted": false
713
780
  },
714
781
  "editor.dragAndDrop": {
715
782
  "description": nls.localizeByDefault("Controls whether the editor should allow moving selections via drag and drop."),
716
783
  "type": "boolean",
717
784
  "default": true,
785
+ "scope": "language-overridable",
718
786
  "restricted": false
719
787
  },
720
788
  "editor.dropIntoEditor.enabled": {
721
789
  "type": "boolean",
722
790
  "default": true,
723
- "markdownDescription": nls.localizeByDefault("Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor)."),
791
+ "markdownDescription": nls.localize("theia/editor/editor.dropIntoEditor.enabled", "Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor)."),
792
+ "scope": "language-overridable",
724
793
  "restricted": false
725
794
  },
726
795
  "editor.dropIntoEditor.showDropSelector": {
@@ -735,12 +804,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
735
804
  nls.localizeByDefault("Never show the drop selector widget. Instead the default drop provider is always used.")
736
805
  ],
737
806
  "default": "afterDrop",
807
+ "scope": "language-overridable",
738
808
  "restricted": false
739
809
  },
740
810
  "editor.emptySelectionClipboard": {
741
811
  "description": nls.localizeByDefault("Controls whether copying without a selection copies the current line."),
742
812
  "type": "boolean",
743
813
  "default": true,
814
+ "scope": "language-overridable",
744
815
  "restricted": false
745
816
  },
746
817
  "editor.experimentalWhitespaceRendering": {
@@ -757,18 +828,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
757
828
  "off"
758
829
  ],
759
830
  "default": "svg",
831
+ "scope": "language-overridable",
760
832
  "restricted": false
761
833
  },
762
834
  "editor.fastScrollSensitivity": {
763
835
  "markdownDescription": nls.localizeByDefault("Scrolling speed multiplier when pressing `Alt`."),
764
836
  "type": "number",
765
837
  "default": 5,
838
+ "scope": "language-overridable",
766
839
  "restricted": false
767
840
  },
768
841
  "editor.find.cursorMoveOnType": {
769
842
  "type": "boolean",
770
843
  "default": true,
771
844
  "description": nls.localizeByDefault("Controls whether the cursor should jump to find matches while typing."),
845
+ "scope": "language-overridable",
772
846
  "restricted": false
773
847
  },
774
848
  "editor.find.seedSearchStringFromSelection": {
@@ -785,6 +859,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
785
859
  nls.localizeByDefault("Only seed search string from the editor selection.")
786
860
  ],
787
861
  "description": nls.localizeByDefault("Controls whether the search string in the Find Widget is seeded from the editor selection."),
862
+ "scope": "language-overridable",
788
863
  "restricted": false
789
864
  },
790
865
  "editor.find.autoFindInSelection": {
@@ -801,24 +876,28 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
801
876
  nls.localizeByDefault("Turn on Find in Selection automatically when multiple lines of content are selected.")
802
877
  ],
803
878
  "description": nls.localizeByDefault("Controls the condition for turning on Find in Selection automatically."),
879
+ "scope": "language-overridable",
804
880
  "restricted": false
805
881
  },
806
882
  "editor.find.addExtraSpaceOnTop": {
807
883
  "type": "boolean",
808
884
  "default": true,
809
885
  "description": nls.localizeByDefault("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."),
886
+ "scope": "language-overridable",
810
887
  "restricted": false
811
888
  },
812
889
  "editor.find.loop": {
813
890
  "type": "boolean",
814
891
  "default": true,
815
892
  "description": nls.localizeByDefault("Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."),
893
+ "scope": "language-overridable",
816
894
  "restricted": false
817
895
  },
818
896
  "editor.folding": {
819
897
  "description": nls.localizeByDefault("Controls whether the editor has code folding enabled."),
820
898
  "type": "boolean",
821
899
  "default": true,
900
+ "scope": "language-overridable",
822
901
  "restricted": false
823
902
  },
824
903
  "editor.foldingStrategy": {
@@ -833,18 +912,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
833
912
  "indentation"
834
913
  ],
835
914
  "default": "auto",
915
+ "scope": "language-overridable",
836
916
  "restricted": false
837
917
  },
838
918
  "editor.foldingHighlight": {
839
919
  "description": nls.localizeByDefault("Controls whether the editor should highlight folded ranges."),
840
920
  "type": "boolean",
841
921
  "default": true,
922
+ "scope": "language-overridable",
842
923
  "restricted": false
843
924
  },
844
925
  "editor.foldingImportsByDefault": {
845
926
  "description": nls.localizeByDefault("Controls whether the editor automatically collapses import ranges."),
846
927
  "type": "boolean",
847
928
  "default": false,
929
+ "scope": "language-overridable",
848
930
  "restricted": false
849
931
  },
850
932
  "editor.foldingMaximumRegions": {
@@ -853,18 +935,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
853
935
  "default": 5000,
854
936
  "minimum": 10,
855
937
  "maximum": 65000,
938
+ "scope": "language-overridable",
856
939
  "restricted": false
857
940
  },
858
941
  "editor.unfoldOnClickAfterEndOfLine": {
859
942
  "description": nls.localizeByDefault("Controls whether clicking on the empty content after a folded line will unfold the line."),
860
943
  "type": "boolean",
861
944
  "default": false,
945
+ "scope": "language-overridable",
862
946
  "restricted": false
863
947
  },
864
948
  "editor.fontFamily": {
865
949
  "description": nls.localizeByDefault("Controls the font family."),
866
950
  "type": "string",
867
951
  "default": isOSX ? 'Menlo, Monaco, \'Courier New\', monospace' : isWindows ? 'Consolas, \'Courier New\', monospace' : '\'Droid Sans Mono\', \'monospace\', monospace',
952
+ "scope": "language-overridable",
868
953
  "restricted": false
869
954
  },
870
955
  "editor.fontLigatures": {
@@ -880,6 +965,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
880
965
  ],
881
966
  "description": nls.localizeByDefault("Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property."),
882
967
  "default": false,
968
+ "scope": "language-overridable",
883
969
  "restricted": false
884
970
  },
885
971
  "editor.fontSize": {
@@ -888,6 +974,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
888
974
  "maximum": 100,
889
975
  "default": isOSX ? 12 : 14,
890
976
  "description": nls.localizeByDefault("Controls the font size in pixels."),
977
+ "scope": "language-overridable",
891
978
  "restricted": false
892
979
  },
893
980
  "editor.fontWeight": {
@@ -920,6 +1007,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
920
1007
  ],
921
1008
  "default": "normal",
922
1009
  "description": nls.localizeByDefault("Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."),
1010
+ "scope": "language-overridable",
923
1011
  "restricted": false
924
1012
  },
925
1013
  "editor.fontVariations": {
@@ -935,29 +1023,34 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
935
1023
  ],
936
1024
  "description": nls.localizeByDefault("Configures font variations. Can be either a boolean to enable/disable the translation from font-weight to font-variation-settings or a string for the value of the CSS 'font-variation-settings' property."),
937
1025
  "default": false,
1026
+ "scope": "language-overridable",
938
1027
  "restricted": false
939
1028
  },
940
1029
  "editor.formatOnPaste": {
941
1030
  "description": nls.localizeByDefault("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."),
942
1031
  "type": "boolean",
943
1032
  "default": false,
1033
+ "scope": "language-overridable",
944
1034
  "restricted": false
945
1035
  },
946
1036
  "editor.formatOnType": {
947
1037
  "description": nls.localizeByDefault("Controls whether the editor should automatically format the line after typing."),
948
1038
  "type": "boolean",
949
1039
  "default": false,
1040
+ "scope": "language-overridable",
950
1041
  "restricted": false
951
1042
  },
952
1043
  "editor.glyphMargin": {
953
1044
  "description": nls.localizeByDefault("Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."),
954
1045
  "type": "boolean",
955
1046
  "default": true,
1047
+ "scope": "language-overridable",
956
1048
  "restricted": false
957
1049
  },
958
1050
  "editor.gotoLocation.multiple": {
959
1051
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.",
960
1052
  "default": null,
1053
+ "scope": "language-overridable",
961
1054
  "restricted": false
962
1055
  },
963
1056
  "editor.gotoLocation.multipleDefinitions": {
@@ -974,6 +1067,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
974
1067
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
975
1068
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
976
1069
  ],
1070
+ "scope": "language-overridable",
977
1071
  "restricted": false
978
1072
  },
979
1073
  "editor.gotoLocation.multipleTypeDefinitions": {
@@ -990,6 +1084,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
990
1084
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
991
1085
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
992
1086
  ],
1087
+ "scope": "language-overridable",
993
1088
  "restricted": false
994
1089
  },
995
1090
  "editor.gotoLocation.multipleDeclarations": {
@@ -1006,6 +1101,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1006
1101
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1007
1102
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1008
1103
  ],
1104
+ "scope": "language-overridable",
1009
1105
  "restricted": false
1010
1106
  },
1011
1107
  "editor.gotoLocation.multipleImplementations": {
@@ -1022,6 +1118,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1022
1118
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1023
1119
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1024
1120
  ],
1121
+ "scope": "language-overridable",
1025
1122
  "restricted": false
1026
1123
  },
1027
1124
  "editor.gotoLocation.multipleReferences": {
@@ -1038,6 +1135,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1038
1135
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1039
1136
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1040
1137
  ],
1138
+ "scope": "language-overridable",
1041
1139
  "restricted": false
1042
1140
  },
1043
1141
  "editor.gotoLocation.alternativeDefinitionCommand": {
@@ -1058,6 +1156,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1058
1156
  "editor.action.revealDefinition"
1059
1157
  ],
1060
1158
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Definition' is the current location."),
1159
+ "scope": "language-overridable",
1061
1160
  "restricted": false
1062
1161
  },
1063
1162
  "editor.gotoLocation.alternativeTypeDefinitionCommand": {
@@ -1078,6 +1177,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1078
1177
  "editor.action.revealDefinition"
1079
1178
  ],
1080
1179
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."),
1180
+ "scope": "language-overridable",
1081
1181
  "restricted": false
1082
1182
  },
1083
1183
  "editor.gotoLocation.alternativeDeclarationCommand": {
@@ -1098,6 +1198,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1098
1198
  "editor.action.revealDefinition"
1099
1199
  ],
1100
1200
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."),
1201
+ "scope": "language-overridable",
1101
1202
  "restricted": false
1102
1203
  },
1103
1204
  "editor.gotoLocation.alternativeImplementationCommand": {
@@ -1118,6 +1219,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1118
1219
  "editor.action.revealDefinition"
1119
1220
  ],
1120
1221
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."),
1222
+ "scope": "language-overridable",
1121
1223
  "restricted": false
1122
1224
  },
1123
1225
  "editor.gotoLocation.alternativeReferenceCommand": {
@@ -1138,18 +1240,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1138
1240
  "editor.action.revealDefinition"
1139
1241
  ],
1140
1242
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Reference' is the current location."),
1243
+ "scope": "language-overridable",
1141
1244
  "restricted": false
1142
1245
  },
1143
1246
  "editor.hideCursorInOverviewRuler": {
1144
1247
  "description": nls.localizeByDefault("Controls whether the cursor should be hidden in the overview ruler."),
1145
1248
  "type": "boolean",
1146
1249
  "default": false,
1250
+ "scope": "language-overridable",
1147
1251
  "restricted": false
1148
1252
  },
1149
1253
  "editor.hover.enabled": {
1150
1254
  "type": "boolean",
1151
1255
  "default": true,
1152
1256
  "description": nls.localizeByDefault("Controls whether the hover is shown."),
1257
+ "scope": "language-overridable",
1153
1258
  "restricted": false
1154
1259
  },
1155
1260
  "editor.hover.delay": {
@@ -1158,12 +1263,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1158
1263
  "minimum": 0,
1159
1264
  "maximum": 10000,
1160
1265
  "description": nls.localizeByDefault("Controls the delay in milliseconds after which the hover is shown."),
1266
+ "scope": "language-overridable",
1161
1267
  "restricted": false
1162
1268
  },
1163
1269
  "editor.hover.sticky": {
1164
1270
  "type": "boolean",
1165
1271
  "default": true,
1166
1272
  "description": nls.localizeByDefault("Controls whether the hover should remain visible when mouse is moved over it."),
1273
+ "scope": "language-overridable",
1167
1274
  "restricted": false
1168
1275
  },
1169
1276
  "editor.hover.hidingDelay": {
@@ -1171,18 +1278,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1171
1278
  "minimum": 0,
1172
1279
  "default": 300,
1173
1280
  "description": nls.localize("theia/editor/editor.hover.hidingDelay", "Controls the delay in milliseconds after thich the hover is hidden. Requires `editor.hover.sticky` to be enabled."),
1281
+ "scope": "language-overridable",
1174
1282
  "restricted": false
1175
1283
  },
1176
1284
  "editor.hover.above": {
1177
1285
  "type": "boolean",
1178
1286
  "default": true,
1179
1287
  "description": nls.localizeByDefault("Prefer showing hovers above the line, if there's space."),
1288
+ "scope": "language-overridable",
1180
1289
  "restricted": false
1181
1290
  },
1182
1291
  "editor.inlineSuggest.enabled": {
1183
1292
  "type": "boolean",
1184
1293
  "default": true,
1185
1294
  "description": nls.localizeByDefault("Controls whether to automatically show inline suggestions in the editor."),
1295
+ "scope": "language-overridable",
1186
1296
  "restricted": false
1187
1297
  },
1188
1298
  "editor.inlineSuggest.showToolbar": {
@@ -1197,30 +1307,35 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1197
1307
  nls.localizeByDefault("Show the inline suggestion toolbar when hovering over an inline suggestion.")
1198
1308
  ],
1199
1309
  "description": nls.localizeByDefault("Controls when to show the inline suggestion toolbar."),
1310
+ "scope": "language-overridable",
1200
1311
  "restricted": false
1201
1312
  },
1202
1313
  "editor.inlineSuggest.suppressSuggestions": {
1203
1314
  "type": "boolean",
1204
1315
  "default": false,
1205
1316
  "description": nls.localizeByDefault("Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."),
1317
+ "scope": "language-overridable",
1206
1318
  "restricted": false
1207
1319
  },
1208
1320
  "editor.letterSpacing": {
1209
1321
  "description": nls.localizeByDefault("Controls the letter spacing in pixels."),
1210
1322
  "type": "number",
1211
1323
  "default": 0,
1324
+ "scope": "language-overridable",
1212
1325
  "restricted": false
1213
1326
  },
1214
1327
  "editor.lightbulb.enabled": {
1215
1328
  "type": "boolean",
1216
1329
  "default": true,
1217
1330
  "description": nls.localizeByDefault("Enables the Code Action lightbulb in the editor."),
1331
+ "scope": "language-overridable",
1218
1332
  "restricted": false
1219
1333
  },
1220
1334
  "editor.lineHeight": {
1221
1335
  "markdownDescription": nls.localizeByDefault("Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."),
1222
1336
  "type": "number",
1223
1337
  "default": 0,
1338
+ "scope": "language-overridable",
1224
1339
  "restricted": false
1225
1340
  },
1226
1341
  "editor.lineNumbers": {
@@ -1239,18 +1354,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1239
1354
  ],
1240
1355
  "default": "on",
1241
1356
  "description": nls.localizeByDefault("Controls the display of line numbers."),
1357
+ "scope": "language-overridable",
1242
1358
  "restricted": false
1243
1359
  },
1244
1360
  "editor.linkedEditing": {
1245
1361
  "description": nls.localizeByDefault("Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."),
1246
1362
  "type": "boolean",
1247
1363
  "default": false,
1364
+ "scope": "language-overridable",
1248
1365
  "restricted": false
1249
1366
  },
1250
1367
  "editor.links": {
1251
1368
  "description": nls.localizeByDefault("Controls whether the editor should detect links and make them clickable."),
1252
1369
  "type": "boolean",
1253
1370
  "default": true,
1371
+ "scope": "language-overridable",
1254
1372
  "restricted": false
1255
1373
  },
1256
1374
  "editor.matchBrackets": {
@@ -1262,18 +1380,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1262
1380
  "never"
1263
1381
  ],
1264
1382
  "default": "always",
1383
+ "scope": "language-overridable",
1265
1384
  "restricted": false
1266
1385
  },
1267
1386
  "editor.minimap.enabled": {
1268
1387
  "type": "boolean",
1269
1388
  "default": true,
1270
1389
  "description": nls.localizeByDefault("Controls whether the minimap is shown."),
1390
+ "scope": "language-overridable",
1271
1391
  "restricted": false
1272
1392
  },
1273
1393
  "editor.minimap.autohide": {
1274
1394
  "type": "boolean",
1275
1395
  "default": false,
1276
1396
  "description": nls.localizeByDefault("Controls whether the minimap is hidden automatically."),
1397
+ "scope": "language-overridable",
1277
1398
  "restricted": false
1278
1399
  },
1279
1400
  "editor.minimap.size": {
@@ -1290,6 +1411,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1290
1411
  ],
1291
1412
  "default": "proportional",
1292
1413
  "description": nls.localizeByDefault("Controls the size of the minimap."),
1414
+ "scope": "language-overridable",
1293
1415
  "restricted": false
1294
1416
  },
1295
1417
  "editor.minimap.side": {
@@ -1300,6 +1422,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1300
1422
  ],
1301
1423
  "default": "right",
1302
1424
  "description": nls.localizeByDefault("Controls the side where to render the minimap."),
1425
+ "scope": "language-overridable",
1303
1426
  "restricted": false
1304
1427
  },
1305
1428
  "editor.minimap.showSlider": {
@@ -1310,6 +1433,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1310
1433
  ],
1311
1434
  "default": "mouseover",
1312
1435
  "description": nls.localizeByDefault("Controls when the minimap slider is shown."),
1436
+ "scope": "language-overridable",
1313
1437
  "restricted": false
1314
1438
  },
1315
1439
  "editor.minimap.scale": {
@@ -1323,36 +1447,42 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1323
1447
  3
1324
1448
  ],
1325
1449
  "description": nls.localizeByDefault("Scale of content drawn in the minimap: 1, 2 or 3."),
1450
+ "scope": "language-overridable",
1326
1451
  "restricted": false
1327
1452
  },
1328
1453
  "editor.minimap.renderCharacters": {
1329
1454
  "type": "boolean",
1330
1455
  "default": true,
1331
1456
  "description": nls.localizeByDefault("Render the actual characters on a line as opposed to color blocks."),
1457
+ "scope": "language-overridable",
1332
1458
  "restricted": false
1333
1459
  },
1334
1460
  "editor.minimap.maxColumn": {
1335
1461
  "type": "number",
1336
1462
  "default": 120,
1337
1463
  "description": nls.localizeByDefault("Limit the width of the minimap to render at most a certain number of columns."),
1464
+ "scope": "language-overridable",
1338
1465
  "restricted": false
1339
1466
  },
1340
1467
  "editor.mouseWheelScrollSensitivity": {
1341
1468
  "markdownDescription": nls.localizeByDefault("A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."),
1342
1469
  "type": "number",
1343
1470
  "default": 1,
1471
+ "scope": "language-overridable",
1344
1472
  "restricted": false
1345
1473
  },
1346
1474
  "editor.mouseWheelZoom": {
1347
1475
  "markdownDescription": nls.localizeByDefault("Zoom the font of the editor when using mouse wheel and holding `Ctrl`."),
1348
1476
  "type": "boolean",
1349
1477
  "default": false,
1478
+ "scope": "language-overridable",
1350
1479
  "restricted": false
1351
1480
  },
1352
1481
  "editor.multiCursorMergeOverlapping": {
1353
1482
  "description": nls.localizeByDefault("Merge multiple cursors when they are overlapping."),
1354
1483
  "type": "boolean",
1355
1484
  "default": true,
1485
+ "scope": "language-overridable",
1356
1486
  "restricted": false
1357
1487
  },
1358
1488
  "editor.multiCursorModifier": {
@@ -1367,6 +1497,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1367
1497
  "alt"
1368
1498
  ],
1369
1499
  "default": "alt",
1500
+ "scope": "language-overridable",
1370
1501
  "restricted": false
1371
1502
  },
1372
1503
  "editor.multiCursorPaste": {
@@ -1381,6 +1512,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1381
1512
  "full"
1382
1513
  ],
1383
1514
  "default": "spread",
1515
+ "scope": "language-overridable",
1384
1516
  "restricted": false
1385
1517
  },
1386
1518
  "editor.multiCursorLimit": {
@@ -1389,18 +1521,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1389
1521
  "default": 10000,
1390
1522
  "minimum": 1,
1391
1523
  "maximum": 100000,
1524
+ "scope": "language-overridable",
1392
1525
  "restricted": false
1393
1526
  },
1394
1527
  "editor.occurrencesHighlight": {
1395
- "description": nls.localizeByDefault("Controls whether the editor should highlight semantic symbol occurrences."),
1528
+ "description": nls.localize("theia/editor/editor.occurrencesHighlight", "Controls whether the editor should highlight semantic symbol occurrences."),
1396
1529
  "type": "boolean",
1397
1530
  "default": true,
1531
+ "scope": "language-overridable",
1398
1532
  "restricted": false
1399
1533
  },
1400
1534
  "editor.overviewRulerBorder": {
1401
1535
  "description": nls.localizeByDefault("Controls whether a border should be drawn around the overview ruler."),
1402
1536
  "type": "boolean",
1403
1537
  "default": true,
1538
+ "scope": "language-overridable",
1404
1539
  "restricted": false
1405
1540
  },
1406
1541
  "editor.padding.top": {
@@ -1409,6 +1544,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1409
1544
  "minimum": 0,
1410
1545
  "maximum": 1000,
1411
1546
  "description": nls.localizeByDefault("Controls the amount of space between the top edge of the editor and the first line."),
1547
+ "scope": "language-overridable",
1412
1548
  "restricted": false
1413
1549
  },
1414
1550
  "editor.padding.bottom": {
@@ -1417,12 +1553,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1417
1553
  "minimum": 0,
1418
1554
  "maximum": 1000,
1419
1555
  "description": nls.localizeByDefault("Controls the amount of space between the bottom edge of the editor and the last line."),
1556
+ "scope": "language-overridable",
1420
1557
  "restricted": false
1421
1558
  },
1422
1559
  "editor.pasteAs.enabled": {
1423
1560
  "type": "boolean",
1424
1561
  "default": true,
1425
1562
  "markdownDescription": nls.localizeByDefault("Controls whether you can paste content in different ways."),
1563
+ "scope": "language-overridable",
1426
1564
  "restricted": false
1427
1565
  },
1428
1566
  "editor.pasteAs.showPasteSelector": {
@@ -1437,18 +1575,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1437
1575
  nls.localizeByDefault("Never show the paste selector widget. Instead the default pasting behavior is always used.")
1438
1576
  ],
1439
1577
  "default": "afterPaste",
1578
+ "scope": "language-overridable",
1440
1579
  "restricted": false
1441
1580
  },
1442
1581
  "editor.parameterHints.enabled": {
1443
1582
  "type": "boolean",
1444
1583
  "default": true,
1445
1584
  "description": nls.localizeByDefault("Enables a pop-up that shows parameter documentation and type information as you type."),
1585
+ "scope": "language-overridable",
1446
1586
  "restricted": false
1447
1587
  },
1448
1588
  "editor.parameterHints.cycle": {
1449
1589
  "type": "boolean",
1450
1590
  "default": true,
1451
1591
  "description": nls.localizeByDefault("Controls whether the parameter hints menu cycles or closes when reaching the end of the list."),
1592
+ "scope": "language-overridable",
1452
1593
  "restricted": false
1453
1594
  },
1454
1595
  "editor.peekWidgetDefaultFocus": {
@@ -1463,12 +1604,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1463
1604
  "editor"
1464
1605
  ],
1465
1606
  "default": "tree",
1607
+ "scope": "language-overridable",
1466
1608
  "restricted": false
1467
1609
  },
1468
1610
  "editor.definitionLinkOpensInPeek": {
1469
1611
  "description": nls.localizeByDefault("Controls whether the Go to Definition mouse gesture always opens the peek widget."),
1470
1612
  "type": "boolean",
1471
1613
  "default": false,
1614
+ "scope": "language-overridable",
1472
1615
  "restricted": false
1473
1616
  },
1474
1617
  "editor.quickSuggestions": {
@@ -1548,6 +1691,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1548
1691
  "strings": "off"
1549
1692
  },
1550
1693
  "markdownDescription": nls.localize("theia/editor/editor.quickSuggestions", "Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the '#editor.suggestOnTriggerCharacters#'-setting which controls if suggestions are triggered by special characters."),
1694
+ "scope": "language-overridable",
1551
1695
  "restricted": false
1552
1696
  },
1553
1697
  "editor.quickSuggestionsDelay": {
@@ -1556,6 +1700,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1556
1700
  "default": 10,
1557
1701
  "minimum": 0,
1558
1702
  "maximum": 1073741824,
1703
+ "scope": "language-overridable",
1559
1704
  "restricted": false
1560
1705
  },
1561
1706
  "editor.renameOnType": {
@@ -1563,6 +1708,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1563
1708
  "markdownDeprecationMessage": "Deprecated, use `editor.linkedEditing` instead.",
1564
1709
  "type": "boolean",
1565
1710
  "default": false,
1711
+ "scope": "language-overridable",
1566
1712
  "restricted": false,
1567
1713
  "deprecationMessage": "Deprecated, use `editor.linkedEditing` instead."
1568
1714
  },
@@ -1570,7 +1716,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1570
1716
  "description": nls.localizeByDefault("Controls whether the editor should render control characters."),
1571
1717
  "restricted": true,
1572
1718
  "type": "boolean",
1573
- "default": true
1719
+ "default": true,
1720
+ "scope": "language-overridable"
1574
1721
  },
1575
1722
  "editor.renderFinalNewline": {
1576
1723
  "description": nls.localizeByDefault("Render last line number when the file ends with a newline."),
@@ -1581,6 +1728,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1581
1728
  "dimmed"
1582
1729
  ],
1583
1730
  "default": "on",
1731
+ "scope": "language-overridable",
1584
1732
  "restricted": false
1585
1733
  },
1586
1734
  "editor.renderLineHighlight": {
@@ -1599,12 +1747,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1599
1747
  "all"
1600
1748
  ],
1601
1749
  "default": "line",
1750
+ "scope": "language-overridable",
1602
1751
  "restricted": false
1603
1752
  },
1604
1753
  "editor.renderLineHighlightOnlyWhenFocus": {
1605
1754
  "description": nls.localizeByDefault("Controls if the editor should render the current line highlight only when the editor is focused."),
1606
1755
  "type": "boolean",
1607
1756
  "default": false,
1757
+ "scope": "language-overridable",
1608
1758
  "restricted": false
1609
1759
  },
1610
1760
  "editor.renderWhitespace": {
@@ -1625,12 +1775,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1625
1775
  "all"
1626
1776
  ],
1627
1777
  "default": "selection",
1778
+ "scope": "language-overridable",
1628
1779
  "restricted": false
1629
1780
  },
1630
1781
  "editor.roundedSelection": {
1631
1782
  "description": nls.localizeByDefault("Controls whether selections should have rounded corners."),
1632
1783
  "type": "boolean",
1633
1784
  "default": true,
1785
+ "scope": "language-overridable",
1634
1786
  "restricted": false
1635
1787
  },
1636
1788
  "editor.rulers": {
@@ -1661,6 +1813,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1661
1813
  },
1662
1814
  "default": [],
1663
1815
  "description": nls.localizeByDefault("Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty."),
1816
+ "scope": "language-overridable",
1664
1817
  "restricted": false
1665
1818
  },
1666
1819
  "editor.scrollbar.vertical": {
@@ -1677,6 +1830,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1677
1830
  ],
1678
1831
  "default": "auto",
1679
1832
  "description": nls.localizeByDefault("Controls the visibility of the vertical scrollbar."),
1833
+ "scope": "language-overridable",
1680
1834
  "restricted": false
1681
1835
  },
1682
1836
  "editor.scrollbar.horizontal": {
@@ -1693,24 +1847,28 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1693
1847
  ],
1694
1848
  "default": "auto",
1695
1849
  "description": nls.localizeByDefault("Controls the visibility of the horizontal scrollbar."),
1850
+ "scope": "language-overridable",
1696
1851
  "restricted": false
1697
1852
  },
1698
1853
  "editor.scrollbar.verticalScrollbarSize": {
1699
1854
  "type": "number",
1700
1855
  "default": 14,
1701
1856
  "description": nls.localizeByDefault("The width of the vertical scrollbar."),
1857
+ "scope": "language-overridable",
1702
1858
  "restricted": false
1703
1859
  },
1704
1860
  "editor.scrollbar.horizontalScrollbarSize": {
1705
1861
  "type": "number",
1706
1862
  "default": 12,
1707
1863
  "description": nls.localizeByDefault("The height of the horizontal scrollbar."),
1864
+ "scope": "language-overridable",
1708
1865
  "restricted": false
1709
1866
  },
1710
1867
  "editor.scrollbar.scrollByPage": {
1711
1868
  "type": "boolean",
1712
1869
  "default": false,
1713
1870
  "description": nls.localizeByDefault("Controls whether clicks scroll by page or jump to click position."),
1871
+ "scope": "language-overridable",
1714
1872
  "restricted": false
1715
1873
  },
1716
1874
  "editor.scrollBeyondLastColumn": {
@@ -1719,24 +1877,28 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1719
1877
  "default": 4,
1720
1878
  "minimum": 0,
1721
1879
  "maximum": 1073741824,
1880
+ "scope": "language-overridable",
1722
1881
  "restricted": false
1723
1882
  },
1724
1883
  "editor.scrollBeyondLastLine": {
1725
1884
  "description": nls.localizeByDefault("Controls whether the editor will scroll beyond the last line."),
1726
1885
  "type": "boolean",
1727
1886
  "default": true,
1887
+ "scope": "language-overridable",
1728
1888
  "restricted": false
1729
1889
  },
1730
1890
  "editor.scrollPredominantAxis": {
1731
1891
  "description": nls.localizeByDefault("Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time. Prevents horizontal drift when scrolling vertically on a trackpad."),
1732
1892
  "type": "boolean",
1733
1893
  "default": true,
1894
+ "scope": "language-overridable",
1734
1895
  "restricted": false
1735
1896
  },
1736
1897
  "editor.selectionHighlight": {
1737
1898
  "description": nls.localizeByDefault("Controls whether the editor should highlight matches similar to the selection."),
1738
1899
  "type": "boolean",
1739
1900
  "default": true,
1901
+ "scope": "language-overridable",
1740
1902
  "restricted": false
1741
1903
  },
1742
1904
  "editor.showFoldingControls": {
@@ -1753,12 +1915,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1753
1915
  "mouseover"
1754
1916
  ],
1755
1917
  "default": "mouseover",
1918
+ "scope": "language-overridable",
1756
1919
  "restricted": false
1757
1920
  },
1758
1921
  "editor.showUnused": {
1759
1922
  "description": nls.localizeByDefault("Controls fading out of unused code."),
1760
1923
  "type": "boolean",
1761
1924
  "default": true,
1925
+ "scope": "language-overridable",
1762
1926
  "restricted": false
1763
1927
  },
1764
1928
  "editor.snippetSuggestions": {
@@ -1777,30 +1941,35 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1777
1941
  "none"
1778
1942
  ],
1779
1943
  "default": "inline",
1944
+ "scope": "language-overridable",
1780
1945
  "restricted": false
1781
1946
  },
1782
1947
  "editor.smartSelect.selectLeadingAndTrailingWhitespace": {
1783
1948
  "description": nls.localizeByDefault("Whether leading and trailing whitespace should always be selected."),
1784
1949
  "default": true,
1785
1950
  "type": "boolean",
1951
+ "scope": "language-overridable",
1786
1952
  "restricted": false
1787
1953
  },
1788
1954
  "editor.smartSelect.selectSubwords": {
1789
1955
  "description": nls.localizeByDefault("Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."),
1790
1956
  "default": true,
1791
1957
  "type": "boolean",
1958
+ "scope": "language-overridable",
1792
1959
  "restricted": false
1793
1960
  },
1794
1961
  "editor.smoothScrolling": {
1795
1962
  "description": nls.localizeByDefault("Controls whether the editor will scroll using an animation."),
1796
1963
  "type": "boolean",
1797
1964
  "default": false,
1965
+ "scope": "language-overridable",
1798
1966
  "restricted": false
1799
1967
  },
1800
1968
  "editor.stickyScroll.enabled": {
1801
1969
  "type": "boolean",
1802
1970
  "default": false,
1803
1971
  "description": nls.localizeByDefault("Shows the nested current scopes during the scroll at the top of the editor."),
1972
+ "scope": "language-overridable",
1804
1973
  "restricted": false
1805
1974
  },
1806
1975
  "editor.stickyScroll.maxLineCount": {
@@ -1809,6 +1978,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1809
1978
  "minimum": 1,
1810
1979
  "maximum": 10,
1811
1980
  "description": nls.localizeByDefault("Defines the maximum number of sticky lines to show."),
1981
+ "scope": "language-overridable",
1812
1982
  "restricted": false
1813
1983
  },
1814
1984
  "editor.stickyScroll.defaultModel": {
@@ -1820,18 +1990,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1820
1990
  ],
1821
1991
  "default": "outlineModel",
1822
1992
  "description": nls.localizeByDefault("Defines the model to use for determining which lines to stick. If the outline model does not exist, it will fall back on the folding provider model which falls back on the indentation model. This order is respected in all three cases."),
1993
+ "scope": "language-overridable",
1823
1994
  "restricted": false
1824
1995
  },
1825
1996
  "editor.stickyScroll.scrollWithEditor": {
1826
1997
  "type": "boolean",
1827
1998
  "default": true,
1828
1999
  "description": nls.localize("theia/editor/editor.stickyScroll.scrollWithEditor", "Enable scrolling of the sticky scroll widget with the editor's horizontal scrollbar."),
2000
+ "scope": "language-overridable",
1829
2001
  "restricted": false
1830
2002
  },
1831
2003
  "editor.stickyTabStops": {
1832
2004
  "description": nls.localizeByDefault("Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."),
1833
2005
  "type": "boolean",
1834
2006
  "default": false,
2007
+ "scope": "language-overridable",
1835
2008
  "restricted": false
1836
2009
  },
1837
2010
  "editor.suggest.insertMode": {
@@ -1846,24 +2019,28 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1846
2019
  ],
1847
2020
  "default": "insert",
1848
2021
  "description": nls.localizeByDefault("Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."),
2022
+ "scope": "language-overridable",
1849
2023
  "restricted": false
1850
2024
  },
1851
2025
  "editor.suggest.filterGraceful": {
1852
2026
  "type": "boolean",
1853
2027
  "default": true,
1854
2028
  "description": nls.localizeByDefault("Controls whether filtering and sorting suggestions accounts for small typos."),
2029
+ "scope": "language-overridable",
1855
2030
  "restricted": false
1856
2031
  },
1857
2032
  "editor.suggest.localityBonus": {
1858
2033
  "type": "boolean",
1859
2034
  "default": false,
1860
2035
  "description": nls.localizeByDefault("Controls whether sorting favors words that appear close to the cursor."),
2036
+ "scope": "language-overridable",
1861
2037
  "restricted": false
1862
2038
  },
1863
2039
  "editor.suggest.shareSuggestSelections": {
1864
2040
  "type": "boolean",
1865
2041
  "default": false,
1866
2042
  "markdownDescription": nls.localizeByDefault("Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."),
2043
+ "scope": "language-overridable",
1867
2044
  "restricted": false
1868
2045
  },
1869
2046
  "editor.suggest.selectionMode": {
@@ -1882,228 +2059,266 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1882
2059
  ],
1883
2060
  "default": "always",
1884
2061
  "markdownDescription": nls.localizeByDefault("Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions (`#editor.quickSuggestions#` and `#editor.suggestOnTriggerCharacters#`) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`."),
2062
+ "scope": "language-overridable",
1885
2063
  "restricted": false
1886
2064
  },
1887
2065
  "editor.suggest.snippetsPreventQuickSuggestions": {
1888
2066
  "type": "boolean",
1889
2067
  "default": false,
1890
2068
  "description": nls.localizeByDefault("Controls whether an active snippet prevents quick suggestions."),
2069
+ "scope": "language-overridable",
1891
2070
  "restricted": false
1892
2071
  },
1893
2072
  "editor.suggest.showIcons": {
1894
2073
  "type": "boolean",
1895
2074
  "default": true,
1896
2075
  "description": nls.localizeByDefault("Controls whether to show or hide icons in suggestions."),
2076
+ "scope": "language-overridable",
1897
2077
  "restricted": false
1898
2078
  },
1899
2079
  "editor.suggest.showStatusBar": {
1900
2080
  "type": "boolean",
1901
2081
  "default": false,
1902
2082
  "description": nls.localizeByDefault("Controls the visibility of the status bar at the bottom of the suggest widget."),
2083
+ "scope": "language-overridable",
1903
2084
  "restricted": false
1904
2085
  },
1905
2086
  "editor.suggest.preview": {
1906
2087
  "type": "boolean",
1907
2088
  "default": false,
1908
2089
  "description": nls.localizeByDefault("Controls whether to preview the suggestion outcome in the editor."),
2090
+ "scope": "language-overridable",
1909
2091
  "restricted": false
1910
2092
  },
1911
2093
  "editor.suggest.showInlineDetails": {
1912
2094
  "type": "boolean",
1913
2095
  "default": true,
1914
2096
  "description": nls.localizeByDefault("Controls whether suggest details show inline with the label or only in the details widget."),
2097
+ "scope": "language-overridable",
1915
2098
  "restricted": false
1916
2099
  },
1917
2100
  "editor.suggest.maxVisibleSuggestions": {
1918
2101
  "type": "number",
1919
2102
  "deprecationMessage": "This setting is deprecated. The suggest widget can now be resized.",
1920
2103
  "default": 0,
2104
+ "scope": "language-overridable",
1921
2105
  "restricted": false
1922
2106
  },
1923
2107
  "editor.suggest.filteredTypes": {
1924
2108
  "type": "object",
1925
2109
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead.",
1926
2110
  "default": {},
2111
+ "scope": "language-overridable",
1927
2112
  "restricted": false
1928
2113
  },
1929
2114
  "editor.suggest.showMethods": {
1930
2115
  "type": "boolean",
1931
2116
  "default": true,
1932
2117
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `method`-suggestions."),
2118
+ "scope": "language-overridable",
1933
2119
  "restricted": false
1934
2120
  },
1935
2121
  "editor.suggest.showFunctions": {
1936
2122
  "type": "boolean",
1937
2123
  "default": true,
1938
2124
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `function`-suggestions."),
2125
+ "scope": "language-overridable",
1939
2126
  "restricted": false
1940
2127
  },
1941
2128
  "editor.suggest.showConstructors": {
1942
2129
  "type": "boolean",
1943
2130
  "default": true,
1944
2131
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `constructor`-suggestions."),
2132
+ "scope": "language-overridable",
1945
2133
  "restricted": false
1946
2134
  },
1947
2135
  "editor.suggest.showDeprecated": {
1948
2136
  "type": "boolean",
1949
2137
  "default": true,
1950
2138
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `deprecated`-suggestions."),
2139
+ "scope": "language-overridable",
1951
2140
  "restricted": false
1952
2141
  },
1953
2142
  "editor.suggest.matchOnWordStartOnly": {
1954
2143
  "type": "boolean",
1955
2144
  "default": true,
1956
2145
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense filtering requires that the first character matches on a word start. For example, `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality."),
2146
+ "scope": "language-overridable",
1957
2147
  "restricted": false
1958
2148
  },
1959
2149
  "editor.suggest.showFields": {
1960
2150
  "type": "boolean",
1961
2151
  "default": true,
1962
2152
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `field`-suggestions."),
2153
+ "scope": "language-overridable",
1963
2154
  "restricted": false
1964
2155
  },
1965
2156
  "editor.suggest.showVariables": {
1966
2157
  "type": "boolean",
1967
2158
  "default": true,
1968
2159
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `variable`-suggestions."),
2160
+ "scope": "language-overridable",
1969
2161
  "restricted": false
1970
2162
  },
1971
2163
  "editor.suggest.showClasses": {
1972
2164
  "type": "boolean",
1973
2165
  "default": true,
1974
2166
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `class`-suggestions."),
2167
+ "scope": "language-overridable",
1975
2168
  "restricted": false
1976
2169
  },
1977
2170
  "editor.suggest.showStructs": {
1978
2171
  "type": "boolean",
1979
2172
  "default": true,
1980
2173
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `struct`-suggestions."),
2174
+ "scope": "language-overridable",
1981
2175
  "restricted": false
1982
2176
  },
1983
2177
  "editor.suggest.showInterfaces": {
1984
2178
  "type": "boolean",
1985
2179
  "default": true,
1986
2180
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `interface`-suggestions."),
2181
+ "scope": "language-overridable",
1987
2182
  "restricted": false
1988
2183
  },
1989
2184
  "editor.suggest.showModules": {
1990
2185
  "type": "boolean",
1991
2186
  "default": true,
1992
2187
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `module`-suggestions."),
2188
+ "scope": "language-overridable",
1993
2189
  "restricted": false
1994
2190
  },
1995
2191
  "editor.suggest.showProperties": {
1996
2192
  "type": "boolean",
1997
2193
  "default": true,
1998
2194
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `property`-suggestions."),
2195
+ "scope": "language-overridable",
1999
2196
  "restricted": false
2000
2197
  },
2001
2198
  "editor.suggest.showEvents": {
2002
2199
  "type": "boolean",
2003
2200
  "default": true,
2004
2201
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `event`-suggestions."),
2202
+ "scope": "language-overridable",
2005
2203
  "restricted": false
2006
2204
  },
2007
2205
  "editor.suggest.showOperators": {
2008
2206
  "type": "boolean",
2009
2207
  "default": true,
2010
2208
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `operator`-suggestions."),
2209
+ "scope": "language-overridable",
2011
2210
  "restricted": false
2012
2211
  },
2013
2212
  "editor.suggest.showUnits": {
2014
2213
  "type": "boolean",
2015
2214
  "default": true,
2016
2215
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `unit`-suggestions."),
2216
+ "scope": "language-overridable",
2017
2217
  "restricted": false
2018
2218
  },
2019
2219
  "editor.suggest.showValues": {
2020
2220
  "type": "boolean",
2021
2221
  "default": true,
2022
2222
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `value`-suggestions."),
2223
+ "scope": "language-overridable",
2023
2224
  "restricted": false
2024
2225
  },
2025
2226
  "editor.suggest.showConstants": {
2026
2227
  "type": "boolean",
2027
2228
  "default": true,
2028
2229
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `constant`-suggestions."),
2230
+ "scope": "language-overridable",
2029
2231
  "restricted": false
2030
2232
  },
2031
2233
  "editor.suggest.showEnums": {
2032
2234
  "type": "boolean",
2033
2235
  "default": true,
2034
2236
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `enum`-suggestions."),
2237
+ "scope": "language-overridable",
2035
2238
  "restricted": false
2036
2239
  },
2037
2240
  "editor.suggest.showEnumMembers": {
2038
2241
  "type": "boolean",
2039
2242
  "default": true,
2040
2243
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `enumMember`-suggestions."),
2244
+ "scope": "language-overridable",
2041
2245
  "restricted": false
2042
2246
  },
2043
2247
  "editor.suggest.showKeywords": {
2044
2248
  "type": "boolean",
2045
2249
  "default": true,
2046
2250
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `keyword`-suggestions."),
2251
+ "scope": "language-overridable",
2047
2252
  "restricted": false
2048
2253
  },
2049
2254
  "editor.suggest.showWords": {
2050
2255
  "type": "boolean",
2051
2256
  "default": true,
2052
2257
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `text`-suggestions."),
2258
+ "scope": "language-overridable",
2053
2259
  "restricted": false
2054
2260
  },
2055
2261
  "editor.suggest.showColors": {
2056
2262
  "type": "boolean",
2057
2263
  "default": true,
2058
2264
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `color`-suggestions."),
2265
+ "scope": "language-overridable",
2059
2266
  "restricted": false
2060
2267
  },
2061
2268
  "editor.suggest.showFiles": {
2062
2269
  "type": "boolean",
2063
2270
  "default": true,
2064
2271
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `file`-suggestions."),
2272
+ "scope": "language-overridable",
2065
2273
  "restricted": false
2066
2274
  },
2067
2275
  "editor.suggest.showReferences": {
2068
2276
  "type": "boolean",
2069
2277
  "default": true,
2070
2278
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `reference`-suggestions."),
2279
+ "scope": "language-overridable",
2071
2280
  "restricted": false
2072
2281
  },
2073
2282
  "editor.suggest.showCustomcolors": {
2074
2283
  "type": "boolean",
2075
2284
  "default": true,
2076
2285
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `customcolor`-suggestions."),
2286
+ "scope": "language-overridable",
2077
2287
  "restricted": false
2078
2288
  },
2079
2289
  "editor.suggest.showFolders": {
2080
2290
  "type": "boolean",
2081
2291
  "default": true,
2082
2292
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `folder`-suggestions."),
2293
+ "scope": "language-overridable",
2083
2294
  "restricted": false
2084
2295
  },
2085
2296
  "editor.suggest.showTypeParameters": {
2086
2297
  "type": "boolean",
2087
2298
  "default": true,
2088
2299
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `typeParameter`-suggestions."),
2300
+ "scope": "language-overridable",
2089
2301
  "restricted": false
2090
2302
  },
2091
2303
  "editor.suggest.showSnippets": {
2092
2304
  "type": "boolean",
2093
2305
  "default": true,
2094
2306
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `snippet`-suggestions."),
2307
+ "scope": "language-overridable",
2095
2308
  "restricted": false
2096
2309
  },
2097
2310
  "editor.suggest.showUsers": {
2098
2311
  "type": "boolean",
2099
2312
  "default": true,
2100
2313
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `user`-suggestions."),
2314
+ "scope": "language-overridable",
2101
2315
  "restricted": false
2102
2316
  },
2103
2317
  "editor.suggest.showIssues": {
2104
2318
  "type": "boolean",
2105
2319
  "default": true,
2106
2320
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `issues`-suggestions."),
2321
+ "scope": "language-overridable",
2107
2322
  "restricted": false
2108
2323
  },
2109
2324
  "editor.suggestFontSize": {
@@ -2112,6 +2327,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2112
2327
  "default": 0,
2113
2328
  "minimum": 0,
2114
2329
  "maximum": 1000,
2330
+ "scope": "language-overridable",
2115
2331
  "restricted": false
2116
2332
  },
2117
2333
  "editor.suggestLineHeight": {
@@ -2120,12 +2336,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2120
2336
  "default": 0,
2121
2337
  "minimum": 0,
2122
2338
  "maximum": 1000,
2339
+ "scope": "language-overridable",
2123
2340
  "restricted": false
2124
2341
  },
2125
2342
  "editor.suggestOnTriggerCharacters": {
2126
2343
  "description": nls.localizeByDefault("Controls whether suggestions should automatically show up when typing trigger characters."),
2127
2344
  "type": "boolean",
2128
2345
  "default": true,
2346
+ "scope": "language-overridable",
2129
2347
  "restricted": false
2130
2348
  },
2131
2349
  "editor.suggestSelection": {
@@ -2142,6 +2360,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2142
2360
  "recentlyUsedByPrefix"
2143
2361
  ],
2144
2362
  "default": "first",
2363
+ "scope": "language-overridable",
2145
2364
  "restricted": false
2146
2365
  },
2147
2366
  "editor.tabCompletion": {
@@ -2158,6 +2377,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2158
2377
  "onlySnippets"
2159
2378
  ],
2160
2379
  "default": "off",
2380
+ "scope": "language-overridable",
2161
2381
  "restricted": false
2162
2382
  },
2163
2383
  "editor.unicodeHighlight.nonBasicASCII": {
@@ -2172,19 +2392,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2172
2392
  "inUntrustedWorkspace"
2173
2393
  ],
2174
2394
  "default": "inUntrustedWorkspace",
2175
- "description": nls.localizeByDefault("Controls whether all non-basic ASCII characters are highlighted. Only characters between U+0020 and U+007E, tab, line-feed and carriage-return are considered basic ASCII.")
2395
+ "description": nls.localizeByDefault("Controls whether all non-basic ASCII characters are highlighted. Only characters between U+0020 and U+007E, tab, line-feed and carriage-return are considered basic ASCII."),
2396
+ "scope": "language-overridable"
2176
2397
  },
2177
2398
  "editor.unicodeHighlight.invisibleCharacters": {
2178
2399
  "restricted": true,
2179
2400
  "type": "boolean",
2180
2401
  "default": true,
2181
- "description": nls.localizeByDefault("Controls whether characters that just reserve space or have no width at all are highlighted.")
2402
+ "description": nls.localizeByDefault("Controls whether characters that just reserve space or have no width at all are highlighted."),
2403
+ "scope": "language-overridable"
2182
2404
  },
2183
2405
  "editor.unicodeHighlight.ambiguousCharacters": {
2184
2406
  "restricted": true,
2185
2407
  "type": "boolean",
2186
2408
  "default": true,
2187
- "description": nls.localizeByDefault("Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale.")
2409
+ "description": nls.localizeByDefault("Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."),
2410
+ "scope": "language-overridable"
2188
2411
  },
2189
2412
  "editor.unicodeHighlight.includeComments": {
2190
2413
  "restricted": true,
@@ -2198,7 +2421,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2198
2421
  "inUntrustedWorkspace"
2199
2422
  ],
2200
2423
  "default": "inUntrustedWorkspace",
2201
- "description": nls.localizeByDefault("Controls whether characters in comments should also be subject to Unicode highlighting.")
2424
+ "description": nls.localizeByDefault("Controls whether characters in comments should also be subject to Unicode highlighting."),
2425
+ "scope": "language-overridable"
2202
2426
  },
2203
2427
  "editor.unicodeHighlight.includeStrings": {
2204
2428
  "restricted": true,
@@ -2212,7 +2436,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2212
2436
  "inUntrustedWorkspace"
2213
2437
  ],
2214
2438
  "default": true,
2215
- "description": nls.localizeByDefault("Controls whether characters in strings should also be subject to Unicode highlighting.")
2439
+ "description": nls.localizeByDefault("Controls whether characters in strings should also be subject to Unicode highlighting."),
2440
+ "scope": "language-overridable"
2216
2441
  },
2217
2442
  "editor.unicodeHighlight.allowedCharacters": {
2218
2443
  "restricted": true,
@@ -2221,7 +2446,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2221
2446
  "description": nls.localizeByDefault("Defines allowed characters that are not being highlighted."),
2222
2447
  "additionalProperties": {
2223
2448
  "type": "boolean"
2224
- }
2449
+ },
2450
+ "scope": "language-overridable"
2225
2451
  },
2226
2452
  "editor.unicodeHighlight.allowedLocales": {
2227
2453
  "restricted": true,
@@ -2233,7 +2459,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2233
2459
  "_os": true,
2234
2460
  "_vscode": true
2235
2461
  },
2236
- "description": nls.localizeByDefault("Unicode characters that are common in allowed locales are not being highlighted.")
2462
+ "description": nls.localizeByDefault("Unicode characters that are common in allowed locales are not being highlighted."),
2463
+ "scope": "language-overridable"
2237
2464
  },
2238
2465
  "editor.unusualLineTerminators": {
2239
2466
  "enumDescriptions": [
@@ -2249,12 +2476,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2249
2476
  "prompt"
2250
2477
  ],
2251
2478
  "default": "prompt",
2479
+ "scope": "language-overridable",
2252
2480
  "restricted": false
2253
2481
  },
2254
2482
  "editor.useTabStops": {
2255
- "description": nls.localizeByDefault("Inserting and deleting whitespace follows tab stops."),
2483
+ "description": nls.localize("theia/editor/editor.useTabStops", "Inserting and deleting whitespace follows tab stops."),
2256
2484
  "type": "boolean",
2257
2485
  "default": true,
2486
+ "scope": "language-overridable",
2258
2487
  "restricted": false
2259
2488
  },
2260
2489
  "editor.wordBreak": {
@@ -2269,12 +2498,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2269
2498
  "keepAll"
2270
2499
  ],
2271
2500
  "default": "normal",
2501
+ "scope": "language-overridable",
2272
2502
  "restricted": false
2273
2503
  },
2274
2504
  "editor.wordSeparators": {
2275
2505
  "description": nls.localizeByDefault("Characters that will be used as word separators when doing word related navigations or operations."),
2276
2506
  "type": "string",
2277
2507
  "default": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
2508
+ "scope": "language-overridable",
2278
2509
  "restricted": false
2279
2510
  },
2280
2511
  "editor.wordWrap": {
@@ -2293,6 +2524,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2293
2524
  "bounded"
2294
2525
  ],
2295
2526
  "default": "off",
2527
+ "scope": "language-overridable",
2296
2528
  "restricted": false
2297
2529
  },
2298
2530
  "editor.wordWrapColumn": {
@@ -2301,6 +2533,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2301
2533
  "default": 80,
2302
2534
  "minimum": 1,
2303
2535
  "maximum": 1073741824,
2536
+ "scope": "language-overridable",
2304
2537
  "restricted": false
2305
2538
  },
2306
2539
  "editor.wrappingIndent": {
@@ -2319,6 +2552,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2319
2552
  ],
2320
2553
  "description": nls.localizeByDefault("Controls the indentation of wrapped lines."),
2321
2554
  "default": "same",
2555
+ "scope": "language-overridable",
2322
2556
  "restricted": false
2323
2557
  },
2324
2558
  "editor.wrappingStrategy": {
@@ -2333,12 +2567,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2333
2567
  ],
2334
2568
  "default": "simple",
2335
2569
  "description": nls.localizeByDefault("Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."),
2570
+ "scope": "language-overridable",
2336
2571
  "restricted": false
2337
2572
  },
2338
2573
  "editor.showDeprecated": {
2339
2574
  "description": nls.localizeByDefault("Controls strikethrough deprecated variables."),
2340
2575
  "type": "boolean",
2341
2576
  "default": true,
2577
+ "scope": "language-overridable",
2342
2578
  "restricted": false
2343
2579
  },
2344
2580
  "editor.inlayHints.enabled": {
@@ -2357,36 +2593,42 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2357
2593
  nls.localize("theia/editor/editor.inlayHints.enabled2", "Inlay hints are hidden by default and show when holding Ctrl+Alt"),
2358
2594
  nls.localizeByDefault("Inlay hints are disabled")
2359
2595
  ],
2596
+ "scope": "language-overridable",
2360
2597
  "restricted": false
2361
2598
  },
2362
2599
  "editor.inlayHints.fontSize": {
2363
2600
  "type": "number",
2364
2601
  "default": 0,
2365
2602
  "markdownDescription": nls.localize("theia/editor/editor.inlayHints.fontSize", "Controls font size of inlay hints in the editor. As default the `#editor.fontSize#` is used when the configured value is less than `5` or greater than the editor font size."),
2603
+ "scope": "language-overridable",
2366
2604
  "restricted": false
2367
2605
  },
2368
2606
  "editor.inlayHints.fontFamily": {
2369
2607
  "type": "string",
2370
2608
  "default": "",
2371
2609
  "markdownDescription": nls.localize("theia/editor/editor.inlayHints.fontFamily", "Controls font family of inlay hints in the editor. When set to empty, the `#editor.fontFamily#` is used."),
2610
+ "scope": "language-overridable",
2372
2611
  "restricted": false
2373
2612
  },
2374
2613
  "editor.inlayHints.padding": {
2375
2614
  "type": "boolean",
2376
2615
  "default": false,
2377
2616
  "description": nls.localizeByDefault("Enables the padding around the inlay hints in the editor."),
2617
+ "scope": "language-overridable",
2378
2618
  "restricted": false
2379
2619
  },
2380
2620
  "editor.tabFocusMode": {
2381
2621
  "markdownDescription": nls.localizeByDefault("Controls whether the editor receives tabs or defers them to the workbench for navigation."),
2382
2622
  "type": "boolean",
2383
2623
  "default": false,
2624
+ "scope": "language-overridable",
2384
2625
  "restricted": false
2385
2626
  },
2386
2627
  "editor.defaultColorDecorators": {
2387
2628
  "markdownDescription": nls.localizeByDefault("Controls whether inline color decorations should be shown using the default document color provider"),
2388
2629
  "type": "boolean",
2389
2630
  "default": false,
2631
+ "scope": "language-overridable",
2390
2632
  "restricted": false
2391
2633
  },
2392
2634
  "editor.colorDecoratorsActivatedOn": {
@@ -2403,28 +2645,33 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2403
2645
  "click"
2404
2646
  ],
2405
2647
  "default": "clickAndHover",
2648
+ "scope": "language-overridable",
2406
2649
  "restricted": false
2407
2650
  },
2408
2651
  "editor.inlineCompletionsAccessibilityVerbose": {
2409
2652
  "description": nls.localizeByDefault("Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."),
2410
2653
  "type": "boolean",
2411
2654
  "default": false,
2655
+ "scope": "language-overridable",
2412
2656
  "restricted": false
2413
2657
  },
2414
2658
  "editor.codeActionWidget.showHeaders": {
2415
2659
  "type": "boolean",
2660
+ "scope": "language-overridable",
2416
2661
  "description": nls.localizeByDefault("Enable/disable showing group headers in the Code Action menu."),
2417
2662
  "default": true,
2418
2663
  "restricted": false
2419
2664
  },
2420
2665
  "editor.codeActionWidget.includeNearbyQuickfixes": {
2421
2666
  "type": "boolean",
2667
+ "scope": "language-overridable",
2422
2668
  "description": nls.localize("theia/editor/editor.codeActionWidget.includeNearbyQuickfixes", "Enable/disable showing nearest quickfix within a line when not currently on a diagnostic."),
2423
2669
  "default": false,
2424
2670
  "restricted": false
2425
2671
  },
2426
2672
  "editor.experimental.dropIntoEditor.defaultProvider": {
2427
2673
  "type": "object",
2674
+ "scope": "language-overridable",
2428
2675
  "description": nls.localizeByDefault("Configures the default drop provider to use for content of a given mime type."),
2429
2676
  "default": {},
2430
2677
  "additionalProperties": {
@@ -2433,6 +2680,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2433
2680
  "restricted": false
2434
2681
  },
2435
2682
  "editor.rename.enablePreview": {
2683
+ "scope": "language-overridable",
2436
2684
  "description": nls.localizeByDefault("Enable/disable the ability to preview changes before renaming"),
2437
2685
  "default": true,
2438
2686
  "type": "boolean",
@@ -2543,6 +2791,7 @@ export interface GeneratedEditorPreferences {
2543
2791
  'editor.fontLigatures': boolean | string;
2544
2792
  'editor.fontSize': number;
2545
2793
  'editor.fontWeight': number | string | 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';
2794
+ 'editor.fontVariations': boolean | string;
2546
2795
  'editor.formatOnPaste': boolean;
2547
2796
  'editor.formatOnType': boolean;
2548
2797
  'editor.glyphMargin': boolean;