@theia/editor 1.65.0-next.6 → 1.65.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 (50) hide show
  1. package/lib/browser/editor-command.d.ts +2 -1
  2. package/lib/browser/editor-command.d.ts.map +1 -1
  3. package/lib/browser/editor-command.js +3 -2
  4. package/lib/browser/editor-command.js.map +1 -1
  5. package/lib/browser/editor-contribution.js +1 -1
  6. package/lib/browser/editor-contribution.js.map +1 -1
  7. package/lib/browser/editor-frontend-module.js +1 -1
  8. package/lib/browser/editor-frontend-module.js.map +1 -1
  9. package/lib/browser/editor-manager.d.ts +2 -1
  10. package/lib/browser/editor-manager.d.ts.map +1 -1
  11. package/lib/browser/editor-manager.js +2 -1
  12. package/lib/browser/editor-manager.js.map +1 -1
  13. package/lib/browser/editor-navigation-contribution.d.ts +1 -1
  14. package/lib/browser/editor-navigation-contribution.d.ts.map +1 -1
  15. package/lib/browser/editor-navigation-contribution.js +9 -21
  16. package/lib/browser/editor-navigation-contribution.js.map +1 -1
  17. package/lib/browser/index.d.ts +0 -1
  18. package/lib/browser/index.d.ts.map +1 -1
  19. package/lib/browser/index.js +0 -1
  20. package/lib/browser/index.js.map +1 -1
  21. package/lib/browser/navigation/navigation-location-service.d.ts +2 -0
  22. package/lib/browser/navigation/navigation-location-service.d.ts.map +1 -1
  23. package/lib/browser/navigation/navigation-location-service.js +20 -0
  24. package/lib/browser/navigation/navigation-location-service.js.map +1 -1
  25. package/lib/{browser → common}/editor-generated-preference-schema.d.ts +1 -1
  26. package/lib/{browser → common}/editor-generated-preference-schema.d.ts.map +1 -1
  27. package/lib/{browser → common}/editor-generated-preference-schema.js +270 -538
  28. package/lib/common/editor-generated-preference-schema.js.map +1 -0
  29. package/lib/{browser → common}/editor-preferences.d.ts +1 -1
  30. package/lib/common/editor-preferences.d.ts.map +1 -0
  31. package/lib/{browser → common}/editor-preferences.js +13 -11
  32. package/lib/common/editor-preferences.js.map +1 -0
  33. package/lib/node/editor-backend-module.d.ts +4 -0
  34. package/lib/node/editor-backend-module.d.ts.map +1 -0
  35. package/lib/node/editor-backend-module.js +23 -0
  36. package/lib/node/editor-backend-module.js.map +1 -0
  37. package/package.json +6 -5
  38. package/src/browser/editor-command.ts +3 -2
  39. package/src/browser/editor-contribution.ts +1 -1
  40. package/src/browser/editor-frontend-module.ts +1 -1
  41. package/src/browser/editor-manager.ts +2 -1
  42. package/src/browser/editor-navigation-contribution.ts +6 -17
  43. package/src/browser/index.ts +0 -1
  44. package/src/browser/navigation/navigation-location-service.ts +23 -0
  45. package/src/{browser → common}/editor-generated-preference-schema.ts +521 -539
  46. package/src/{browser → common}/editor-preferences.ts +15 -12
  47. package/src/node/editor-backend-module.ts +22 -0
  48. package/lib/browser/editor-generated-preference-schema.js.map +0 -1
  49. package/lib/browser/editor-preferences.d.ts.map +0 -1
  50. package/lib/browser/editor-preferences.js.map +0 -1
@@ -15,7 +15,7 @@
15
15
  ********************************************************************************/
16
16
 
17
17
  import { isOSX, isWindows, nls } from '@theia/core';
18
- import { PreferenceSchema } from '@theia/core/lib/browser';
18
+ import { PreferenceSchema, PreferenceScope } from '@theia/core/lib/common/preferences';
19
19
 
20
20
  /* eslint-disable @typescript-eslint/quotes,max-len,no-null/no-null */
21
21
 
@@ -31,8 +31,8 @@ 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",
35
- "restricted": false
34
+ "scope": PreferenceScope.Folder,
35
+
36
36
  },
37
37
  "editor.indentSize": {
38
38
  "anyOf": [
@@ -49,36 +49,31 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
49
49
  ],
50
50
  "default": "tabSize",
51
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",
53
- "restricted": false
52
+ "scope": PreferenceScope.Folder,
54
53
  },
55
54
  "editor.insertSpaces": {
56
55
  "type": "boolean",
57
56
  "default": true,
58
57
  "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",
60
- "restricted": false
58
+ "scope": PreferenceScope.Folder,
61
59
  },
62
60
  "editor.detectIndentation": {
63
61
  "type": "boolean",
64
62
  "default": true,
65
63
  "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",
67
- "restricted": false
64
+ "scope": PreferenceScope.Folder,
68
65
  },
69
66
  "editor.trimAutoWhitespace": {
70
67
  "type": "boolean",
71
68
  "default": true,
72
69
  "description": nls.localizeByDefault("Remove trailing auto inserted whitespace."),
73
- "scope": "language-overridable",
74
- "restricted": false
70
+ "scope": PreferenceScope.Folder,
75
71
  },
76
72
  "editor.largeFileOptimizations": {
77
73
  "type": "boolean",
78
74
  "default": true,
79
75
  "description": nls.localizeByDefault("Special handling for large files to disable certain memory intensive features."),
80
- "scope": "language-overridable",
81
- "restricted": false
76
+ "scope": PreferenceScope.Folder,
82
77
  },
83
78
  "editor.wordBasedSuggestions": {
84
79
  "enum": [
@@ -95,8 +90,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
95
90
  nls.localizeByDefault("Suggest words from all open documents.")
96
91
  ],
97
92
  "description": nls.localizeByDefault("Controls whether completions should be computed based on words in the document and from which documents they are computed."),
98
- "scope": "language-overridable",
99
- "restricted": false
93
+ "scope": PreferenceScope.Folder
100
94
  },
101
95
  "editor.semanticHighlighting.enabled": {
102
96
  "enum": [
@@ -111,22 +105,19 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
111
105
  ],
112
106
  "default": "configuredByTheme",
113
107
  "description": nls.localizeByDefault("Controls whether the semanticHighlighting is shown for the languages that support it."),
114
- "scope": "language-overridable",
115
- "restricted": false
108
+ "scope": PreferenceScope.Folder,
116
109
  },
117
110
  "editor.stablePeek": {
118
111
  "type": "boolean",
119
112
  "default": false,
120
113
  "markdownDescription": nls.localizeByDefault("Keep peek editors open even when double-clicking their content or when hitting `Escape`."),
121
- "scope": "language-overridable",
122
- "restricted": false
114
+ "scope": PreferenceScope.Folder,
123
115
  },
124
116
  "editor.maxTokenizationLineLength": {
125
117
  "type": "integer",
126
118
  "default": 20000,
127
119
  "description": nls.localizeByDefault("Lines above this length will not be tokenized for performance reasons"),
128
- "scope": "language-overridable",
129
- "restricted": false
120
+ "scope": PreferenceScope.Folder,
130
121
  },
131
122
  "editor.experimental.asyncTokenization": {
132
123
  "type": "boolean",
@@ -135,15 +126,14 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
135
126
  "tags": [
136
127
  "experimental"
137
128
  ],
138
- "scope": "language-overridable",
139
- "restricted": false
129
+ "scope": PreferenceScope.Folder,
140
130
  },
141
131
  "editor.experimental.asyncTokenizationLogging": {
142
132
  "type": "boolean",
143
133
  "default": false,
144
134
  "description": nls.localizeByDefault("Controls whether async tokenization should be logged. For debugging only."),
145
- "scope": "language-overridable",
146
- "restricted": false
135
+ "scope": PreferenceScope.Folder
136
+
147
137
  },
148
138
  "editor.experimental.asyncTokenizationVerification": {
149
139
  "type": "boolean",
@@ -152,8 +142,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
152
142
  "tags": [
153
143
  "experimental"
154
144
  ],
155
- "scope": "language-overridable",
156
- "restricted": false
145
+ "scope": PreferenceScope.Folder
146
+
157
147
  },
158
148
  "editor.experimental.treeSitterTelemetry": {
159
149
  "type": "boolean",
@@ -163,8 +153,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
163
153
  "experimental",
164
154
  "onExP"
165
155
  ],
166
- "scope": "language-overridable",
167
- "restricted": false
156
+ "scope": PreferenceScope.Folder
157
+
168
158
  },
169
159
  "editor.experimental.preferTreeSitter": {
170
160
  "type": "array",
@@ -179,8 +169,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
179
169
  "tags": [
180
170
  "experimental"
181
171
  ],
182
- "scope": "language-overridable",
183
- "restricted": false
172
+ "scope": PreferenceScope.Folder
173
+
184
174
  },
185
175
  "editor.language.brackets": {
186
176
  "type": [
@@ -202,8 +192,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
202
192
  }
203
193
  ]
204
194
  },
205
- "scope": "language-overridable",
206
- "restricted": false
195
+ "scope": PreferenceScope.Folder
196
+
207
197
  },
208
198
  "editor.language.colorizedBracketPairs": {
209
199
  "type": [
@@ -225,78 +215,78 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
225
215
  }
226
216
  ]
227
217
  },
228
- "scope": "language-overridable",
229
- "restricted": false
218
+ "scope": PreferenceScope.Folder
219
+
230
220
  },
231
221
  "diffEditor.maxComputationTime": {
232
222
  "type": "number",
233
223
  "default": 5000,
234
224
  "description": nls.localizeByDefault("Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout."),
235
- "scope": "language-overridable",
236
- "restricted": false
225
+ "scope": PreferenceScope.Folder
226
+
237
227
  },
238
228
  "diffEditor.maxFileSize": {
239
229
  "type": "number",
240
230
  "default": 50,
241
231
  "description": nls.localizeByDefault("Maximum file size in MB for which to compute diffs. Use 0 for no limit."),
242
- "scope": "language-overridable",
243
- "restricted": false
232
+ "scope": PreferenceScope.Folder
233
+
244
234
  },
245
235
  "diffEditor.renderSideBySide": {
246
236
  "type": "boolean",
247
237
  "default": true,
248
238
  "description": nls.localizeByDefault("Controls whether the diff editor shows the diff side by side or inline."),
249
- "scope": "language-overridable",
250
- "restricted": false
239
+ "scope": PreferenceScope.Folder
240
+
251
241
  },
252
242
  "diffEditor.renderSideBySideInlineBreakpoint": {
253
243
  "type": "number",
254
244
  "default": 900,
255
245
  "description": nls.localizeByDefault("If the diff editor width is smaller than this value, the inline view is used."),
256
- "scope": "language-overridable",
257
- "restricted": false
246
+ "scope": PreferenceScope.Folder
247
+
258
248
  },
259
249
  "diffEditor.useInlineViewWhenSpaceIsLimited": {
260
250
  "type": "boolean",
261
251
  "default": true,
262
252
  "description": nls.localizeByDefault("If enabled and the editor width is too small, the inline view is used."),
263
- "scope": "language-overridable",
264
- "restricted": false
253
+ "scope": PreferenceScope.Folder
254
+
265
255
  },
266
256
  "diffEditor.renderMarginRevertIcon": {
267
257
  "type": "boolean",
268
258
  "default": true,
269
259
  "description": nls.localizeByDefault("When enabled, the diff editor shows arrows in its glyph margin to revert changes."),
270
- "scope": "language-overridable",
271
- "restricted": false
260
+ "scope": PreferenceScope.Folder
261
+
272
262
  },
273
263
  "diffEditor.renderGutterMenu": {
274
264
  "type": "boolean",
275
265
  "default": true,
276
266
  "description": nls.localizeByDefault("When enabled, the diff editor shows a special gutter for revert and stage actions."),
277
- "scope": "language-overridable",
278
- "restricted": false
267
+ "scope": PreferenceScope.Folder
268
+
279
269
  },
280
270
  "diffEditor.ignoreTrimWhitespace": {
281
271
  "type": "boolean",
282
272
  "default": true,
283
273
  "description": nls.localizeByDefault("When enabled, the diff editor ignores changes in leading or trailing whitespace."),
284
- "scope": "language-overridable",
285
- "restricted": false
274
+ "scope": PreferenceScope.Folder
275
+
286
276
  },
287
277
  "diffEditor.renderIndicators": {
288
278
  "type": "boolean",
289
279
  "default": true,
290
280
  "description": nls.localizeByDefault("Controls whether the diff editor shows +/- indicators for added/removed changes."),
291
- "scope": "language-overridable",
292
- "restricted": false
281
+ "scope": PreferenceScope.Folder
282
+
293
283
  },
294
284
  "diffEditor.codeLens": {
295
285
  "type": "boolean",
296
286
  "default": false,
297
287
  "description": nls.localizeByDefault("Controls whether the editor shows CodeLens."),
298
- "scope": "language-overridable",
299
- "restricted": false
288
+ "scope": PreferenceScope.Folder
289
+
300
290
  },
301
291
  "diffEditor.wordWrap": {
302
292
  "type": "string",
@@ -311,8 +301,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
311
301
  nls.localizeByDefault("Lines will wrap at the viewport width."),
312
302
  nls.localize("theia/editor/diffEditor.wordWrap2", "Lines will wrap according to the `#editor.wordWrap#` setting.")
313
303
  ],
314
- "scope": "language-overridable",
315
- "restricted": false
304
+ "scope": PreferenceScope.Folder
305
+
316
306
  },
317
307
  "diffEditor.diffAlgorithm": {
318
308
  "type": "string",
@@ -325,67 +315,67 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
325
315
  nls.localizeByDefault("Uses the legacy diffing algorithm."),
326
316
  nls.localizeByDefault("Uses the advanced diffing algorithm.")
327
317
  ],
328
- "scope": "language-overridable",
329
- "restricted": false
318
+ "scope": PreferenceScope.Folder
319
+
330
320
  },
331
321
  "diffEditor.hideUnchangedRegions.enabled": {
332
322
  "type": "boolean",
333
323
  "default": false,
334
324
  "markdownDescription": nls.localizeByDefault("Controls whether the diff editor shows unchanged regions."),
335
- "scope": "language-overridable",
336
- "restricted": false
325
+ "scope": PreferenceScope.Folder
326
+
337
327
  },
338
328
  "diffEditor.hideUnchangedRegions.revealLineCount": {
339
329
  "type": "integer",
340
330
  "default": 20,
341
331
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used for unchanged regions."),
342
332
  "minimum": 1,
343
- "scope": "language-overridable",
344
- "restricted": false
333
+ "scope": PreferenceScope.Folder
334
+
345
335
  },
346
336
  "diffEditor.hideUnchangedRegions.minimumLineCount": {
347
337
  "type": "integer",
348
338
  "default": 3,
349
339
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used as a minimum for unchanged regions."),
350
340
  "minimum": 1,
351
- "scope": "language-overridable",
352
- "restricted": false
341
+ "scope": PreferenceScope.Folder
342
+
353
343
  },
354
344
  "diffEditor.hideUnchangedRegions.contextLineCount": {
355
345
  "type": "integer",
356
346
  "default": 3,
357
347
  "markdownDescription": nls.localizeByDefault("Controls how many lines are used as context when comparing unchanged regions."),
358
348
  "minimum": 1,
359
- "scope": "language-overridable",
360
- "restricted": false
349
+ "scope": PreferenceScope.Folder
350
+
361
351
  },
362
352
  "diffEditor.experimental.showMoves": {
363
353
  "type": "boolean",
364
354
  "default": false,
365
355
  "markdownDescription": nls.localizeByDefault("Controls whether the diff editor should show detected code moves."),
366
- "scope": "language-overridable",
367
- "restricted": false
356
+ "scope": PreferenceScope.Folder
357
+
368
358
  },
369
359
  "diffEditor.experimental.showEmptyDecorations": {
370
360
  "type": "boolean",
371
361
  "default": true,
372
362
  "description": nls.localizeByDefault("Controls whether the diff editor shows empty decorations to see where characters got inserted or deleted."),
373
- "scope": "language-overridable",
374
- "restricted": false
363
+ "scope": PreferenceScope.Folder
364
+
375
365
  },
376
366
  "diffEditor.experimental.useTrueInlineView": {
377
367
  "type": "boolean",
378
368
  "default": false,
379
369
  "description": nls.localizeByDefault("If enabled and the editor uses the inline view, word changes are rendered inline."),
380
- "scope": "language-overridable",
381
- "restricted": false
370
+ "scope": PreferenceScope.Folder
371
+
382
372
  },
383
373
  "editor.acceptSuggestionOnCommitCharacter": {
384
374
  "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."),
385
375
  "type": "boolean",
386
376
  "default": true,
387
- "scope": "language-overridable",
388
- "restricted": false
377
+ "scope": PreferenceScope.Folder
378
+
389
379
  },
390
380
  "editor.acceptSuggestionOnEnter": {
391
381
  "markdownEnumDescriptions": [
@@ -401,8 +391,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
401
391
  "off"
402
392
  ],
403
393
  "default": "on",
404
- "scope": "language-overridable",
405
- "restricted": false
394
+ "scope": PreferenceScope.Folder
395
+
406
396
  },
407
397
  "editor.accessibilitySupport": {
408
398
  "type": "string",
@@ -421,8 +411,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
421
411
  "accessibility"
422
412
  ],
423
413
  "description": nls.localizeByDefault("Controls if the UI should run in a mode where it is optimized for screen readers."),
424
- "scope": "language-overridable",
425
- "restricted": false
414
+ "scope": PreferenceScope.Folder
415
+
426
416
  },
427
417
  "editor.accessibilityPageSize": {
428
418
  "description": nls.localizeByDefault("Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default."),
@@ -433,8 +423,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
433
423
  "default": 10,
434
424
  "minimum": 1,
435
425
  "maximum": 1073741824,
436
- "scope": "language-overridable",
437
- "restricted": false
426
+ "scope": PreferenceScope.Folder
427
+
438
428
  },
439
429
  "editor.autoClosingBrackets": {
440
430
  "enumDescriptions": [
@@ -452,8 +442,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
452
442
  "never"
453
443
  ],
454
444
  "default": "languageDefined",
455
- "scope": "language-overridable",
456
- "restricted": false
445
+ "scope": PreferenceScope.Folder
446
+
457
447
  },
458
448
  "editor.autoClosingComments": {
459
449
  "enumDescriptions": [
@@ -471,8 +461,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
471
461
  "never"
472
462
  ],
473
463
  "default": "languageDefined",
474
- "scope": "language-overridable",
475
- "restricted": false
464
+ "scope": PreferenceScope.Folder
465
+
476
466
  },
477
467
  "editor.screenReaderAnnounceInlineSuggestion": {
478
468
  "description": nls.localizeByDefault("Control whether inline suggestions are announced by a screen reader."),
@@ -481,8 +471,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
481
471
  ],
482
472
  "type": "boolean",
483
473
  "default": true,
484
- "scope": "language-overridable",
485
- "restricted": false
474
+ "scope": PreferenceScope.Folder
475
+
486
476
  },
487
477
  "editor.autoClosingDelete": {
488
478
  "enumDescriptions": [
@@ -498,8 +488,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
498
488
  "never"
499
489
  ],
500
490
  "default": "auto",
501
- "scope": "language-overridable",
502
- "restricted": false
491
+ "scope": PreferenceScope.Folder
492
+
503
493
  },
504
494
  "editor.autoClosingOvertype": {
505
495
  "enumDescriptions": [
@@ -515,8 +505,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
515
505
  "never"
516
506
  ],
517
507
  "default": "auto",
518
- "scope": "language-overridable",
519
- "restricted": false
508
+ "scope": PreferenceScope.Folder
509
+
520
510
  },
521
511
  "editor.autoClosingQuotes": {
522
512
  "enumDescriptions": [
@@ -534,8 +524,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
534
524
  "never"
535
525
  ],
536
526
  "default": "languageDefined",
537
- "scope": "language-overridable",
538
- "restricted": false
527
+ "scope": PreferenceScope.Folder
528
+
539
529
  },
540
530
  "editor.autoIndent": {
541
531
  "enumDescriptions": [
@@ -555,8 +545,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
555
545
  "full"
556
546
  ],
557
547
  "default": "full",
558
- "scope": "language-overridable",
559
- "restricted": false
548
+ "scope": PreferenceScope.Folder
549
+
560
550
  },
561
551
  "editor.autoSurround": {
562
552
  "enumDescriptions": [
@@ -574,22 +564,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
574
564
  "never"
575
565
  ],
576
566
  "default": "languageDefined",
577
- "scope": "language-overridable",
578
- "restricted": false
567
+ "scope": PreferenceScope.Folder
568
+
579
569
  },
580
570
  "editor.bracketPairColorization.enabled": {
581
571
  "type": "boolean",
582
572
  "default": true,
583
573
  "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."),
584
- "scope": "language-overridable",
585
- "restricted": false
574
+ "scope": PreferenceScope.Folder
575
+
586
576
  },
587
577
  "editor.bracketPairColorization.independentColorPoolPerBracketType": {
588
578
  "type": "boolean",
589
579
  "default": false,
590
580
  "description": nls.localizeByDefault("Controls whether each bracket type has its own independent color pool."),
591
- "scope": "language-overridable",
592
- "restricted": false
581
+ "scope": PreferenceScope.Folder
582
+
593
583
  },
594
584
  "editor.guides.bracketPairs": {
595
585
  "type": [
@@ -608,8 +598,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
608
598
  ],
609
599
  "default": false,
610
600
  "description": nls.localizeByDefault("Controls whether bracket pair guides are enabled or not."),
611
- "scope": "language-overridable",
612
- "restricted": false
601
+ "scope": PreferenceScope.Folder
602
+
613
603
  },
614
604
  "editor.guides.bracketPairsHorizontal": {
615
605
  "type": [
@@ -628,22 +618,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
628
618
  ],
629
619
  "default": "active",
630
620
  "description": nls.localizeByDefault("Controls whether horizontal bracket pair guides are enabled or not."),
631
- "scope": "language-overridable",
632
- "restricted": false
621
+ "scope": PreferenceScope.Folder
622
+
633
623
  },
634
624
  "editor.guides.highlightActiveBracketPair": {
635
625
  "type": "boolean",
636
626
  "default": true,
637
627
  "description": nls.localizeByDefault("Controls whether the editor should highlight the active bracket pair."),
638
- "scope": "language-overridable",
639
- "restricted": false
628
+ "scope": PreferenceScope.Folder
629
+
640
630
  },
641
631
  "editor.guides.indentation": {
642
632
  "type": "boolean",
643
633
  "default": true,
644
634
  "description": nls.localizeByDefault("Controls whether the editor should render indent guides."),
645
- "scope": "language-overridable",
646
- "restricted": false
635
+ "scope": PreferenceScope.Folder
636
+
647
637
  },
648
638
  "editor.guides.highlightActiveIndentation": {
649
639
  "type": [
@@ -662,22 +652,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
662
652
  ],
663
653
  "default": true,
664
654
  "description": nls.localizeByDefault("Controls whether the editor should highlight the active indent guide."),
665
- "scope": "language-overridable",
666
- "restricted": false
655
+ "scope": PreferenceScope.Folder
656
+
667
657
  },
668
658
  "editor.codeLens": {
669
659
  "description": nls.localizeByDefault("Controls whether the editor shows CodeLens."),
670
660
  "type": "boolean",
671
661
  "default": true,
672
- "scope": "language-overridable",
673
- "restricted": false
662
+ "scope": PreferenceScope.Folder
663
+
674
664
  },
675
665
  "editor.codeLensFontFamily": {
676
666
  "description": nls.localizeByDefault("Controls the font family for CodeLens."),
677
667
  "type": "string",
678
668
  "default": "",
679
- "scope": "language-overridable",
680
- "restricted": false
669
+ "scope": PreferenceScope.Folder
670
+
681
671
  },
682
672
  "editor.codeLensFontSize": {
683
673
  "type": "integer",
@@ -685,15 +675,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
685
675
  "minimum": 0,
686
676
  "maximum": 100,
687
677
  "markdownDescription": nls.localizeByDefault("Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."),
688
- "scope": "language-overridable",
689
- "restricted": false
678
+ "scope": PreferenceScope.Folder
679
+
690
680
  },
691
681
  "editor.colorDecorators": {
692
682
  "description": nls.localizeByDefault("Controls whether the editor should render the inline color decorators and color picker."),
693
683
  "type": "boolean",
694
684
  "default": true,
695
- "scope": "language-overridable",
696
- "restricted": false
685
+ "scope": PreferenceScope.Folder
686
+
697
687
  },
698
688
  "editor.colorDecoratorsLimit": {
699
689
  "markdownDescription": nls.localizeByDefault("Controls the max number of color decorators that can be rendered in an editor at once."),
@@ -701,36 +691,36 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
701
691
  "default": 500,
702
692
  "minimum": 1,
703
693
  "maximum": 1000000,
704
- "scope": "language-overridable",
705
- "restricted": false
694
+ "scope": PreferenceScope.Folder
695
+
706
696
  },
707
697
  "editor.columnSelection": {
708
698
  "description": nls.localizeByDefault("Enable that the selection with the mouse and keys is doing column selection."),
709
699
  "type": "boolean",
710
700
  "default": false,
711
- "scope": "language-overridable",
712
- "restricted": false
701
+ "scope": PreferenceScope.Folder
702
+
713
703
  },
714
704
  "editor.comments.insertSpace": {
715
705
  "type": "boolean",
716
706
  "default": true,
717
707
  "description": nls.localizeByDefault("Controls whether a space character is inserted when commenting."),
718
- "scope": "language-overridable",
719
- "restricted": false
708
+ "scope": PreferenceScope.Folder
709
+
720
710
  },
721
711
  "editor.comments.ignoreEmptyLines": {
722
712
  "type": "boolean",
723
713
  "default": true,
724
714
  "description": nls.localizeByDefault("Controls if empty lines should be ignored with toggle, add or remove actions for line comments."),
725
- "scope": "language-overridable",
726
- "restricted": false
715
+ "scope": PreferenceScope.Folder
716
+
727
717
  },
728
718
  "editor.copyWithSyntaxHighlighting": {
729
719
  "description": nls.localizeByDefault("Controls whether syntax highlighting should be copied into the clipboard."),
730
720
  "type": "boolean",
731
721
  "default": true,
732
- "scope": "language-overridable",
733
- "restricted": false
722
+ "scope": PreferenceScope.Folder
723
+
734
724
  },
735
725
  "editor.cursorBlinking": {
736
726
  "description": nls.localizeByDefault("Control the cursor animation style."),
@@ -743,8 +733,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
743
733
  "solid"
744
734
  ],
745
735
  "default": "blink",
746
- "scope": "language-overridable",
747
- "restricted": false
736
+ "scope": PreferenceScope.Folder
737
+
748
738
  },
749
739
  "editor.cursorSmoothCaretAnimation": {
750
740
  "enumDescriptions": [
@@ -760,8 +750,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
760
750
  "on"
761
751
  ],
762
752
  "default": "off",
763
- "scope": "language-overridable",
764
- "restricted": false
753
+ "scope": PreferenceScope.Folder
754
+
765
755
  },
766
756
  "editor.cursorStyle": {
767
757
  "description": nls.localizeByDefault("Controls the cursor style in insert input mode."),
@@ -775,8 +765,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
775
765
  "underline-thin"
776
766
  ],
777
767
  "default": "line",
778
- "scope": "language-overridable",
779
- "restricted": false
768
+ "scope": PreferenceScope.Folder
769
+
780
770
  },
781
771
  "editor.cursorSurroundingLines": {
782
772
  "description": nls.localizeByDefault("Controls the minimal number of visible leading lines (minimum 0) and trailing lines (minimum 1) surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors."),
@@ -784,8 +774,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
784
774
  "default": 0,
785
775
  "minimum": 0,
786
776
  "maximum": 1073741824,
787
- "scope": "language-overridable",
788
- "restricted": false
777
+ "scope": PreferenceScope.Folder
778
+
789
779
  },
790
780
  "editor.cursorSurroundingLinesStyle": {
791
781
  "enumDescriptions": [
@@ -799,8 +789,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
799
789
  "all"
800
790
  ],
801
791
  "default": "default",
802
- "scope": "language-overridable",
803
- "restricted": false
792
+ "scope": PreferenceScope.Folder
793
+
804
794
  },
805
795
  "editor.cursorWidth": {
806
796
  "markdownDescription": nls.localizeByDefault("Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."),
@@ -808,22 +798,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
808
798
  "default": 0,
809
799
  "minimum": 0,
810
800
  "maximum": 1073741824,
811
- "scope": "language-overridable",
812
- "restricted": false
801
+ "scope": PreferenceScope.Folder
802
+
813
803
  },
814
804
  "editor.dragAndDrop": {
815
805
  "description": nls.localizeByDefault("Controls whether the editor should allow moving selections via drag and drop."),
816
806
  "type": "boolean",
817
807
  "default": true,
818
- "scope": "language-overridable",
819
- "restricted": false
808
+ "scope": PreferenceScope.Folder
809
+
820
810
  },
821
811
  "editor.dropIntoEditor.enabled": {
822
812
  "type": "boolean",
823
813
  "default": true,
824
814
  "markdownDescription": nls.localizeByDefault("Controls whether you can drag and drop a file into a text editor by holding down the `Shift` key (instead of opening the file in an editor)."),
825
- "scope": "language-overridable",
826
- "restricted": false
815
+ "scope": PreferenceScope.Folder
816
+
827
817
  },
828
818
  "editor.dropIntoEditor.showDropSelector": {
829
819
  "type": "string",
@@ -837,23 +827,23 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
837
827
  nls.localizeByDefault("Never show the drop selector widget. Instead the default drop provider is always used.")
838
828
  ],
839
829
  "default": "afterDrop",
840
- "scope": "language-overridable",
841
- "restricted": false
830
+ "scope": PreferenceScope.Folder
831
+
842
832
  },
843
833
  "editor.experimentalEditContextEnabled": {
844
834
  "description": nls.localizeByDefault("Sets whether the new experimental edit context should be used instead of the text area."),
845
835
  "included": true,
846
836
  "type": "boolean",
847
837
  "default": false,
848
- "scope": "language-overridable",
849
- "restricted": false
838
+ "scope": PreferenceScope.Folder
839
+
850
840
  },
851
841
  "editor.emptySelectionClipboard": {
852
842
  "description": nls.localizeByDefault("Controls whether copying without a selection copies the current line."),
853
843
  "type": "boolean",
854
844
  "default": true,
855
- "scope": "language-overridable",
856
- "restricted": false
845
+ "scope": PreferenceScope.Folder
846
+
857
847
  },
858
848
  "editor.experimentalWhitespaceRendering": {
859
849
  "enumDescriptions": [
@@ -869,22 +859,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
869
859
  "off"
870
860
  ],
871
861
  "default": "svg",
872
- "scope": "language-overridable",
873
- "restricted": false
862
+ "scope": PreferenceScope.Folder
863
+
874
864
  },
875
865
  "editor.fastScrollSensitivity": {
876
866
  "markdownDescription": nls.localizeByDefault("Scrolling speed multiplier when pressing `Alt`."),
877
867
  "type": "number",
878
868
  "default": 5,
879
- "scope": "language-overridable",
880
- "restricted": false
869
+ "scope": PreferenceScope.Folder
870
+
881
871
  },
882
872
  "editor.find.cursorMoveOnType": {
883
873
  "type": "boolean",
884
874
  "default": true,
885
875
  "description": nls.localizeByDefault("Controls whether the cursor should jump to find matches while typing."),
886
- "scope": "language-overridable",
887
- "restricted": false
876
+ "scope": PreferenceScope.Folder
877
+
888
878
  },
889
879
  "editor.find.seedSearchStringFromSelection": {
890
880
  "type": "string",
@@ -900,8 +890,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
900
890
  nls.localizeByDefault("Only seed search string from the editor selection.")
901
891
  ],
902
892
  "description": nls.localizeByDefault("Controls whether the search string in the Find Widget is seeded from the editor selection."),
903
- "scope": "language-overridable",
904
- "restricted": false
893
+ "scope": PreferenceScope.Folder
894
+
905
895
  },
906
896
  "editor.find.autoFindInSelection": {
907
897
  "type": "string",
@@ -917,22 +907,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
917
907
  nls.localizeByDefault("Turn on Find in Selection automatically when multiple lines of content are selected.")
918
908
  ],
919
909
  "description": nls.localizeByDefault("Controls the condition for turning on Find in Selection automatically."),
920
- "scope": "language-overridable",
921
- "restricted": false
910
+ "scope": PreferenceScope.Folder
911
+
922
912
  },
923
913
  "editor.find.addExtraSpaceOnTop": {
924
914
  "type": "boolean",
925
915
  "default": true,
926
916
  "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."),
927
- "scope": "language-overridable",
928
- "restricted": false
917
+ "scope": PreferenceScope.Folder
918
+
929
919
  },
930
920
  "editor.find.loop": {
931
921
  "type": "boolean",
932
922
  "default": true,
933
923
  "description": nls.localizeByDefault("Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."),
934
- "scope": "language-overridable",
935
- "restricted": false
924
+ "scope": PreferenceScope.Folder
925
+
936
926
  },
937
927
  "editor.find.history": {
938
928
  "type": "string",
@@ -946,15 +936,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
946
936
  nls.localizeByDefault("Store search history across the active workspace")
947
937
  ],
948
938
  "description": nls.localizeByDefault("Controls how the find widget history should be stored"),
949
- "scope": "language-overridable",
950
- "restricted": false
939
+ "scope": PreferenceScope.Folder
940
+
951
941
  },
952
942
  "editor.folding": {
953
943
  "description": nls.localizeByDefault("Controls whether the editor has code folding enabled."),
954
944
  "type": "boolean",
955
945
  "default": true,
956
- "scope": "language-overridable",
957
- "restricted": false
946
+ "scope": PreferenceScope.Folder
947
+
958
948
  },
959
949
  "editor.foldingStrategy": {
960
950
  "enumDescriptions": [
@@ -968,22 +958,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
968
958
  "indentation"
969
959
  ],
970
960
  "default": "auto",
971
- "scope": "language-overridable",
972
- "restricted": false
961
+ "scope": PreferenceScope.Folder
962
+
973
963
  },
974
964
  "editor.foldingHighlight": {
975
965
  "description": nls.localizeByDefault("Controls whether the editor should highlight folded ranges."),
976
966
  "type": "boolean",
977
967
  "default": true,
978
- "scope": "language-overridable",
979
- "restricted": false
968
+ "scope": PreferenceScope.Folder
969
+
980
970
  },
981
971
  "editor.foldingImportsByDefault": {
982
972
  "description": nls.localizeByDefault("Controls whether the editor automatically collapses import ranges."),
983
973
  "type": "boolean",
984
974
  "default": false,
985
- "scope": "language-overridable",
986
- "restricted": false
975
+ "scope": PreferenceScope.Folder
976
+
987
977
  },
988
978
  "editor.foldingMaximumRegions": {
989
979
  "description": nls.localizeByDefault("The maximum number of foldable regions. Increasing this value may result in the editor becoming less responsive when the current source has a large number of foldable regions."),
@@ -991,22 +981,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
991
981
  "default": 5000,
992
982
  "minimum": 10,
993
983
  "maximum": 65000,
994
- "scope": "language-overridable",
995
- "restricted": false
984
+ "scope": PreferenceScope.Folder
985
+
996
986
  },
997
987
  "editor.unfoldOnClickAfterEndOfLine": {
998
988
  "description": nls.localizeByDefault("Controls whether clicking on the empty content after a folded line will unfold the line."),
999
989
  "type": "boolean",
1000
990
  "default": false,
1001
- "scope": "language-overridable",
1002
- "restricted": false
991
+ "scope": PreferenceScope.Folder
992
+
1003
993
  },
1004
994
  "editor.fontFamily": {
1005
995
  "description": nls.localizeByDefault("Controls the font family."),
1006
996
  "type": "string",
1007
997
  "default": isOSX ? 'Menlo, Monaco, \'Courier New\', monospace' : isWindows ? 'Consolas, \'Courier New\', monospace' : '\'Droid Sans Mono\', \'monospace\', monospace',
1008
- "scope": "language-overridable",
1009
- "restricted": false
998
+ "scope": PreferenceScope.Folder
999
+
1010
1000
  },
1011
1001
  "editor.fontLigatures": {
1012
1002
  "anyOf": [
@@ -1021,8 +1011,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1021
1011
  ],
1022
1012
  "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."),
1023
1013
  "default": false,
1024
- "scope": "language-overridable",
1025
- "restricted": false
1014
+ "scope": PreferenceScope.Folder
1015
+
1026
1016
  },
1027
1017
  "editor.fontSize": {
1028
1018
  "type": "number",
@@ -1030,8 +1020,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1030
1020
  "maximum": 100,
1031
1021
  "default": isOSX ? 12 : 14,
1032
1022
  "description": nls.localizeByDefault("Controls the font size in pixels."),
1033
- "scope": "language-overridable",
1034
- "restricted": false
1023
+ "scope": PreferenceScope.Folder
1024
+
1035
1025
  },
1036
1026
  "editor.fontWeight": {
1037
1027
  "anyOf": [
@@ -1063,8 +1053,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1063
1053
  ],
1064
1054
  "default": "normal",
1065
1055
  "description": nls.localizeByDefault("Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."),
1066
- "scope": "language-overridable",
1067
- "restricted": false
1056
+ "scope": PreferenceScope.Folder
1057
+
1068
1058
  },
1069
1059
  "editor.fontVariations": {
1070
1060
  "anyOf": [
@@ -1079,29 +1069,29 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1079
1069
  ],
1080
1070
  "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."),
1081
1071
  "default": false,
1082
- "scope": "language-overridable",
1083
- "restricted": false
1072
+ "scope": PreferenceScope.Folder
1073
+
1084
1074
  },
1085
1075
  "editor.formatOnPaste": {
1086
1076
  "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."),
1087
1077
  "type": "boolean",
1088
1078
  "default": false,
1089
- "scope": "language-overridable",
1090
- "restricted": false
1079
+ "scope": PreferenceScope.Folder
1080
+
1091
1081
  },
1092
1082
  "editor.formatOnType": {
1093
1083
  "description": nls.localizeByDefault("Controls whether the editor should automatically format the line after typing."),
1094
1084
  "type": "boolean",
1095
1085
  "default": false,
1096
- "scope": "language-overridable",
1097
- "restricted": false
1086
+ "scope": PreferenceScope.Folder
1087
+
1098
1088
  },
1099
1089
  "editor.glyphMargin": {
1100
1090
  "description": nls.localizeByDefault("Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."),
1101
1091
  "type": "boolean",
1102
1092
  "default": true,
1103
- "scope": "language-overridable",
1104
- "restricted": false
1093
+ "scope": PreferenceScope.Folder
1094
+
1105
1095
  },
1106
1096
  "editor.gotoLocation.multiple": {
1107
1097
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.",
@@ -1110,8 +1100,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1110
1100
  "null"
1111
1101
  ],
1112
1102
  "default": null,
1113
- "scope": "language-overridable",
1114
- "restricted": false
1103
+ "scope": PreferenceScope.Folder
1104
+
1115
1105
  },
1116
1106
  "editor.gotoLocation.multipleDefinitions": {
1117
1107
  "description": nls.localizeByDefault("Controls the behavior the 'Go to Definition'-command when multiple target locations exist."),
@@ -1127,8 +1117,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1127
1117
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1128
1118
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1129
1119
  ],
1130
- "scope": "language-overridable",
1131
- "restricted": false
1120
+ "scope": PreferenceScope.Folder
1121
+
1132
1122
  },
1133
1123
  "editor.gotoLocation.multipleTypeDefinitions": {
1134
1124
  "description": nls.localizeByDefault("Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."),
@@ -1144,8 +1134,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1144
1134
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1145
1135
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1146
1136
  ],
1147
- "scope": "language-overridable",
1148
- "restricted": false
1137
+ "scope": PreferenceScope.Folder
1138
+
1149
1139
  },
1150
1140
  "editor.gotoLocation.multipleDeclarations": {
1151
1141
  "description": nls.localizeByDefault("Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."),
@@ -1161,8 +1151,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1161
1151
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1162
1152
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1163
1153
  ],
1164
- "scope": "language-overridable",
1165
- "restricted": false
1154
+ "scope": PreferenceScope.Folder
1155
+
1166
1156
  },
1167
1157
  "editor.gotoLocation.multipleImplementations": {
1168
1158
  "description": nls.localizeByDefault("Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."),
@@ -1178,8 +1168,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1178
1168
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1179
1169
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1180
1170
  ],
1181
- "scope": "language-overridable",
1182
- "restricted": false
1171
+ "scope": PreferenceScope.Folder
1172
+
1183
1173
  },
1184
1174
  "editor.gotoLocation.multipleReferences": {
1185
1175
  "description": nls.localizeByDefault("Controls the behavior the 'Go to References'-command when multiple target locations exist."),
@@ -1195,8 +1185,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1195
1185
  nls.localizeByDefault("Go to the primary result and show a Peek view"),
1196
1186
  nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
1197
1187
  ],
1198
- "scope": "language-overridable",
1199
- "restricted": false
1188
+ "scope": PreferenceScope.Folder
1189
+
1200
1190
  },
1201
1191
  "editor.gotoLocation.alternativeDefinitionCommand": {
1202
1192
  "type": "string",
@@ -1216,8 +1206,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1216
1206
  "editor.action.revealDefinition"
1217
1207
  ],
1218
1208
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Definition' is the current location."),
1219
- "scope": "language-overridable",
1220
- "restricted": false
1209
+ "scope": PreferenceScope.Folder
1210
+
1221
1211
  },
1222
1212
  "editor.gotoLocation.alternativeTypeDefinitionCommand": {
1223
1213
  "type": "string",
@@ -1237,8 +1227,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1237
1227
  "editor.action.revealDefinition"
1238
1228
  ],
1239
1229
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."),
1240
- "scope": "language-overridable",
1241
- "restricted": false
1230
+ "scope": PreferenceScope.Folder
1231
+
1242
1232
  },
1243
1233
  "editor.gotoLocation.alternativeDeclarationCommand": {
1244
1234
  "type": "string",
@@ -1258,8 +1248,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1258
1248
  "editor.action.revealDefinition"
1259
1249
  ],
1260
1250
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."),
1261
- "scope": "language-overridable",
1262
- "restricted": false
1251
+ "scope": PreferenceScope.Folder
1252
+
1263
1253
  },
1264
1254
  "editor.gotoLocation.alternativeImplementationCommand": {
1265
1255
  "type": "string",
@@ -1279,8 +1269,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1279
1269
  "editor.action.revealDefinition"
1280
1270
  ],
1281
1271
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."),
1282
- "scope": "language-overridable",
1283
- "restricted": false
1272
+ "scope": PreferenceScope.Folder
1273
+
1284
1274
  },
1285
1275
  "editor.gotoLocation.alternativeReferenceCommand": {
1286
1276
  "type": "string",
@@ -1300,22 +1290,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1300
1290
  "editor.action.revealDefinition"
1301
1291
  ],
1302
1292
  "description": nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Reference' is the current location."),
1303
- "scope": "language-overridable",
1304
- "restricted": false
1293
+ "scope": PreferenceScope.Folder
1294
+
1305
1295
  },
1306
1296
  "editor.hideCursorInOverviewRuler": {
1307
1297
  "description": nls.localizeByDefault("Controls whether the cursor should be hidden in the overview ruler."),
1308
1298
  "type": "boolean",
1309
1299
  "default": false,
1310
- "scope": "language-overridable",
1311
- "restricted": false
1300
+ "scope": PreferenceScope.Folder
1301
+
1312
1302
  },
1313
1303
  "editor.hover.enabled": {
1314
1304
  "type": "boolean",
1315
1305
  "default": true,
1316
1306
  "description": nls.localizeByDefault("Controls whether the hover is shown."),
1317
- "scope": "language-overridable",
1318
- "restricted": false
1307
+ "scope": PreferenceScope.Folder
1308
+
1319
1309
  },
1320
1310
  "editor.hover.delay": {
1321
1311
  "type": "number",
@@ -1323,37 +1313,37 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1323
1313
  "minimum": 0,
1324
1314
  "maximum": 10000,
1325
1315
  "description": nls.localizeByDefault("Controls the delay in milliseconds after which the hover is shown."),
1326
- "scope": "language-overridable",
1327
- "restricted": false
1316
+ "scope": PreferenceScope.Folder
1317
+
1328
1318
  },
1329
1319
  "editor.hover.sticky": {
1330
1320
  "type": "boolean",
1331
1321
  "default": true,
1332
1322
  "description": nls.localizeByDefault("Controls whether the hover should remain visible when mouse is moved over it."),
1333
- "scope": "language-overridable",
1334
- "restricted": false
1323
+ "scope": PreferenceScope.Folder
1324
+
1335
1325
  },
1336
1326
  "editor.hover.hidingDelay": {
1337
1327
  "type": "integer",
1338
1328
  "minimum": 0,
1339
1329
  "default": 300,
1340
1330
  "description": nls.localizeByDefault("Controls the delay in milliseconds after which the hover is hidden. Requires `editor.hover.sticky` to be enabled."),
1341
- "scope": "language-overridable",
1342
- "restricted": false
1331
+ "scope": PreferenceScope.Folder
1332
+
1343
1333
  },
1344
1334
  "editor.hover.above": {
1345
1335
  "type": "boolean",
1346
1336
  "default": true,
1347
1337
  "description": nls.localizeByDefault("Prefer showing hovers above the line, if there's space."),
1348
- "scope": "language-overridable",
1349
- "restricted": false
1338
+ "scope": PreferenceScope.Folder
1339
+
1350
1340
  },
1351
1341
  "editor.inlineSuggest.enabled": {
1352
1342
  "type": "boolean",
1353
1343
  "default": true,
1354
1344
  "description": nls.localizeByDefault("Controls whether to automatically show inline suggestions in the editor."),
1355
- "scope": "language-overridable",
1356
- "restricted": false
1345
+ "scope": PreferenceScope.Folder
1346
+
1357
1347
  },
1358
1348
  "editor.inlineSuggest.showToolbar": {
1359
1349
  "type": "string",
@@ -1369,36 +1359,36 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1369
1359
  nls.localizeByDefault("Never show the inline suggestion toolbar.")
1370
1360
  ],
1371
1361
  "description": nls.localizeByDefault("Controls when to show the inline suggestion toolbar."),
1372
- "scope": "language-overridable",
1373
- "restricted": false
1362
+ "scope": PreferenceScope.Folder
1363
+
1374
1364
  },
1375
1365
  "editor.inlineSuggest.syntaxHighlightingEnabled": {
1376
1366
  "type": "boolean",
1377
1367
  "default": false,
1378
1368
  "description": nls.localizeByDefault("Controls whether to show syntax highlighting for inline suggestions in the editor."),
1379
- "scope": "language-overridable",
1380
- "restricted": false
1369
+ "scope": PreferenceScope.Folder
1370
+
1381
1371
  },
1382
1372
  "editor.inlineSuggest.suppressSuggestions": {
1383
1373
  "type": "boolean",
1384
1374
  "default": false,
1385
1375
  "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."),
1386
- "scope": "language-overridable",
1387
- "restricted": false
1376
+ "scope": PreferenceScope.Folder
1377
+
1388
1378
  },
1389
1379
  "editor.inlineSuggest.fontFamily": {
1390
1380
  "type": "string",
1391
1381
  "default": "default",
1392
1382
  "description": nls.localizeByDefault("Controls the font family of the inline suggestions."),
1393
- "scope": "language-overridable",
1394
- "restricted": false
1383
+ "scope": PreferenceScope.Folder
1384
+
1395
1385
  },
1396
1386
  "editor.inlineSuggest.edits.experimental.enabled": {
1397
1387
  "type": "boolean",
1398
1388
  "default": true,
1399
1389
  "description": nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.enabled", "Controls whether to enable experimental edits in inline suggestions."),
1400
- "scope": "language-overridable",
1401
- "restricted": false
1390
+ "scope": PreferenceScope.Folder
1391
+
1402
1392
  },
1403
1393
  "editor.inlineSuggest.edits.experimental.useMixedLinesDiff": {
1404
1394
  "type": "string",
@@ -1408,8 +1398,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1408
1398
  "never",
1409
1399
  "whenPossible"
1410
1400
  ],
1411
- "scope": "language-overridable",
1412
- "restricted": false
1401
+ "scope": PreferenceScope.Folder
1402
+
1413
1403
  },
1414
1404
  "editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": {
1415
1405
  "type": "string",
@@ -1420,22 +1410,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1420
1410
  "always",
1421
1411
  "afterJump"
1422
1412
  ],
1423
- "scope": "language-overridable",
1424
- "restricted": false
1413
+ "scope": PreferenceScope.Folder
1414
+
1425
1415
  },
1426
1416
  "editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": {
1427
1417
  "type": "boolean",
1428
1418
  "default": true,
1429
1419
  "description": nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor", "Controls whether to only show inline suggestions when the cursor is close to the suggestion."),
1430
- "scope": "language-overridable",
1431
- "restricted": false
1420
+ "scope": PreferenceScope.Folder
1421
+
1432
1422
  },
1433
1423
  "editor.letterSpacing": {
1434
1424
  "description": nls.localizeByDefault("Controls the letter spacing in pixels."),
1435
1425
  "type": "number",
1436
1426
  "default": 0,
1437
- "scope": "language-overridable",
1438
- "restricted": false
1427
+ "scope": PreferenceScope.Folder
1428
+
1439
1429
  },
1440
1430
  "editor.lightbulb.enabled": {
1441
1431
  "type": "string",
@@ -1451,15 +1441,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1451
1441
  nls.localizeByDefault("Show the code action menu when the cursor is on lines with code or on empty lines.")
1452
1442
  ],
1453
1443
  "description": nls.localizeByDefault("Enables the Code Action lightbulb in the editor."),
1454
- "scope": "language-overridable",
1455
- "restricted": false
1444
+ "scope": PreferenceScope.Folder
1445
+
1456
1446
  },
1457
1447
  "editor.lineHeight": {
1458
1448
  "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."),
1459
1449
  "type": "number",
1460
1450
  "default": 0,
1461
- "scope": "language-overridable",
1462
- "restricted": false
1451
+ "scope": PreferenceScope.Folder
1452
+
1463
1453
  },
1464
1454
  "editor.lineNumbers": {
1465
1455
  "type": "string",
@@ -1477,22 +1467,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1477
1467
  ],
1478
1468
  "default": "on",
1479
1469
  "description": nls.localizeByDefault("Controls the display of line numbers."),
1480
- "scope": "language-overridable",
1481
- "restricted": false
1470
+ "scope": PreferenceScope.Folder
1471
+
1482
1472
  },
1483
1473
  "editor.linkedEditing": {
1484
1474
  "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."),
1485
1475
  "type": "boolean",
1486
1476
  "default": false,
1487
- "scope": "language-overridable",
1488
- "restricted": false
1477
+ "scope": PreferenceScope.Folder
1478
+
1489
1479
  },
1490
1480
  "editor.links": {
1491
1481
  "description": nls.localizeByDefault("Controls whether the editor should detect links and make them clickable."),
1492
1482
  "type": "boolean",
1493
1483
  "default": true,
1494
- "scope": "language-overridable",
1495
- "restricted": false
1484
+ "scope": PreferenceScope.Folder
1485
+
1496
1486
  },
1497
1487
  "editor.matchBrackets": {
1498
1488
  "description": nls.localizeByDefault("Highlight matching brackets."),
@@ -1503,22 +1493,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1503
1493
  "never"
1504
1494
  ],
1505
1495
  "default": "always",
1506
- "scope": "language-overridable",
1507
- "restricted": false
1496
+ "scope": PreferenceScope.Folder
1497
+
1508
1498
  },
1509
1499
  "editor.minimap.enabled": {
1510
1500
  "type": "boolean",
1511
1501
  "default": true,
1512
1502
  "description": nls.localizeByDefault("Controls whether the minimap is shown."),
1513
- "scope": "language-overridable",
1514
- "restricted": false
1503
+ "scope": PreferenceScope.Folder
1504
+
1515
1505
  },
1516
1506
  "editor.minimap.autohide": {
1517
1507
  "type": "boolean",
1518
1508
  "default": false,
1519
1509
  "description": nls.localizeByDefault("Controls whether the minimap is hidden automatically."),
1520
- "scope": "language-overridable",
1521
- "restricted": false
1510
+ "scope": PreferenceScope.Folder
1511
+
1522
1512
  },
1523
1513
  "editor.minimap.size": {
1524
1514
  "type": "string",
@@ -1534,8 +1524,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1534
1524
  ],
1535
1525
  "default": "proportional",
1536
1526
  "description": nls.localizeByDefault("Controls the size of the minimap."),
1537
- "scope": "language-overridable",
1538
- "restricted": false
1527
+ "scope": PreferenceScope.Folder
1528
+
1539
1529
  },
1540
1530
  "editor.minimap.side": {
1541
1531
  "type": "string",
@@ -1545,8 +1535,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1545
1535
  ],
1546
1536
  "default": "right",
1547
1537
  "description": nls.localizeByDefault("Controls the side where to render the minimap."),
1548
- "scope": "language-overridable",
1549
- "restricted": false
1538
+ "scope": PreferenceScope.Folder
1539
+
1550
1540
  },
1551
1541
  "editor.minimap.showSlider": {
1552
1542
  "type": "string",
@@ -1556,8 +1546,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1556
1546
  ],
1557
1547
  "default": "mouseover",
1558
1548
  "description": nls.localizeByDefault("Controls when the minimap slider is shown."),
1559
- "scope": "language-overridable",
1560
- "restricted": false
1549
+ "scope": PreferenceScope.Folder
1550
+
1561
1551
  },
1562
1552
  "editor.minimap.scale": {
1563
1553
  "type": "number",
@@ -1570,71 +1560,71 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1570
1560
  3
1571
1561
  ],
1572
1562
  "description": nls.localizeByDefault("Scale of content drawn in the minimap: 1, 2 or 3."),
1573
- "scope": "language-overridable",
1574
- "restricted": false
1563
+ "scope": PreferenceScope.Folder
1564
+
1575
1565
  },
1576
1566
  "editor.minimap.renderCharacters": {
1577
1567
  "type": "boolean",
1578
1568
  "default": true,
1579
1569
  "description": nls.localizeByDefault("Render the actual characters on a line as opposed to color blocks."),
1580
- "scope": "language-overridable",
1581
- "restricted": false
1570
+ "scope": PreferenceScope.Folder
1571
+
1582
1572
  },
1583
1573
  "editor.minimap.maxColumn": {
1584
1574
  "type": "number",
1585
1575
  "default": 120,
1586
1576
  "description": nls.localizeByDefault("Limit the width of the minimap to render at most a certain number of columns."),
1587
- "scope": "language-overridable",
1588
- "restricted": false
1577
+ "scope": PreferenceScope.Folder
1578
+
1589
1579
  },
1590
1580
  "editor.minimap.showRegionSectionHeaders": {
1591
1581
  "type": "boolean",
1592
1582
  "default": true,
1593
1583
  "description": nls.localizeByDefault("Controls whether named regions are shown as section headers in the minimap."),
1594
- "scope": "language-overridable",
1595
- "restricted": false
1584
+ "scope": PreferenceScope.Folder
1585
+
1596
1586
  },
1597
1587
  "editor.minimap.showMarkSectionHeaders": {
1598
1588
  "type": "boolean",
1599
1589
  "default": true,
1600
1590
  "description": nls.localizeByDefault("Controls whether MARK: comments are shown as section headers in the minimap."),
1601
- "scope": "language-overridable",
1602
- "restricted": false
1591
+ "scope": PreferenceScope.Folder
1592
+
1603
1593
  },
1604
1594
  "editor.minimap.sectionHeaderFontSize": {
1605
1595
  "type": "number",
1606
1596
  "default": 9,
1607
1597
  "description": nls.localizeByDefault("Controls the font size of section headers in the minimap."),
1608
- "scope": "language-overridable",
1609
- "restricted": false
1598
+ "scope": PreferenceScope.Folder
1599
+
1610
1600
  },
1611
1601
  "editor.minimap.sectionHeaderLetterSpacing": {
1612
1602
  "type": "number",
1613
1603
  "default": 1,
1614
1604
  "description": nls.localizeByDefault("Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."),
1615
- "scope": "language-overridable",
1616
- "restricted": false
1605
+ "scope": PreferenceScope.Folder
1606
+
1617
1607
  },
1618
1608
  "editor.mouseWheelScrollSensitivity": {
1619
1609
  "markdownDescription": nls.localizeByDefault("A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."),
1620
1610
  "type": "number",
1621
1611
  "default": 1,
1622
- "scope": "language-overridable",
1623
- "restricted": false
1612
+ "scope": PreferenceScope.Folder
1613
+
1624
1614
  },
1625
1615
  "editor.mouseWheelZoom": {
1626
1616
  "markdownDescription": nls.localizeByDefault("Zoom the font of the editor when using mouse wheel and holding `Ctrl`."),
1627
1617
  "type": "boolean",
1628
1618
  "default": false,
1629
- "scope": "language-overridable",
1630
- "restricted": false
1619
+ "scope": PreferenceScope.Folder
1620
+
1631
1621
  },
1632
1622
  "editor.multiCursorMergeOverlapping": {
1633
1623
  "description": nls.localizeByDefault("Merge multiple cursors when they are overlapping."),
1634
1624
  "type": "boolean",
1635
1625
  "default": true,
1636
- "scope": "language-overridable",
1637
- "restricted": false
1626
+ "scope": PreferenceScope.Folder
1627
+
1638
1628
  },
1639
1629
  "editor.multiCursorModifier": {
1640
1630
  "markdownEnumDescriptions": [
@@ -1648,8 +1638,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1648
1638
  "alt"
1649
1639
  ],
1650
1640
  "default": "alt",
1651
- "scope": "language-overridable",
1652
- "restricted": false
1641
+ "scope": PreferenceScope.Folder
1642
+
1653
1643
  },
1654
1644
  "editor.multiCursorPaste": {
1655
1645
  "markdownEnumDescriptions": [
@@ -1663,8 +1653,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1663
1653
  "full"
1664
1654
  ],
1665
1655
  "default": "spread",
1666
- "scope": "language-overridable",
1667
- "restricted": false
1656
+ "scope": PreferenceScope.Folder
1657
+
1668
1658
  },
1669
1659
  "editor.multiCursorLimit": {
1670
1660
  "markdownDescription": nls.localizeByDefault("Controls the max number of cursors that can be in an active editor at once."),
@@ -1672,8 +1662,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1672
1662
  "default": 10000,
1673
1663
  "minimum": 1,
1674
1664
  "maximum": 100000,
1675
- "scope": "language-overridable",
1676
- "restricted": false
1665
+ "scope": PreferenceScope.Folder
1666
+
1677
1667
  },
1678
1668
  "editor.occurrencesHighlight": {
1679
1669
  "markdownEnumDescriptions": [
@@ -1689,8 +1679,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1689
1679
  "multiFile"
1690
1680
  ],
1691
1681
  "default": "singleFile",
1692
- "scope": "language-overridable",
1693
- "restricted": false
1682
+ "scope": PreferenceScope.Folder
1683
+
1694
1684
  },
1695
1685
  "editor.occurrencesHighlightDelay": {
1696
1686
  "description": nls.localizeByDefault("Controls the delay in milliseconds after which occurrences are highlighted."),
@@ -1701,8 +1691,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1701
1691
  "default": 250,
1702
1692
  "minimum": 0,
1703
1693
  "maximum": 2000,
1704
- "scope": "language-overridable",
1705
- "restricted": false
1694
+ "scope": PreferenceScope.Folder
1695
+
1706
1696
  },
1707
1697
  "editor.overtypeCursorStyle": {
1708
1698
  "description": nls.localizeByDefault("Controls the cursor style in overtype input mode."),
@@ -1716,22 +1706,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1716
1706
  "underline-thin"
1717
1707
  ],
1718
1708
  "default": "block",
1719
- "scope": "language-overridable",
1720
- "restricted": false
1709
+ "scope": PreferenceScope.Folder
1710
+
1721
1711
  },
1722
1712
  "editor.overtypeOnPaste": {
1723
1713
  "description": nls.localizeByDefault("Controls whether pasting should overtype."),
1724
1714
  "type": "boolean",
1725
1715
  "default": true,
1726
- "scope": "language-overridable",
1727
- "restricted": false
1716
+ "scope": PreferenceScope.Folder
1717
+
1728
1718
  },
1729
1719
  "editor.overviewRulerBorder": {
1730
1720
  "description": nls.localizeByDefault("Controls whether a border should be drawn around the overview ruler."),
1731
1721
  "type": "boolean",
1732
1722
  "default": true,
1733
- "scope": "language-overridable",
1734
- "restricted": false
1723
+ "scope": PreferenceScope.Folder
1724
+
1735
1725
  },
1736
1726
  "editor.padding.top": {
1737
1727
  "type": "number",
@@ -1739,8 +1729,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1739
1729
  "minimum": 0,
1740
1730
  "maximum": 1000,
1741
1731
  "description": nls.localizeByDefault("Controls the amount of space between the top edge of the editor and the first line."),
1742
- "scope": "language-overridable",
1743
- "restricted": false
1732
+ "scope": PreferenceScope.Folder
1733
+
1744
1734
  },
1745
1735
  "editor.padding.bottom": {
1746
1736
  "type": "number",
@@ -1748,15 +1738,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1748
1738
  "minimum": 0,
1749
1739
  "maximum": 1000,
1750
1740
  "description": nls.localizeByDefault("Controls the amount of space between the bottom edge of the editor and the last line."),
1751
- "scope": "language-overridable",
1752
- "restricted": false
1741
+ "scope": PreferenceScope.Folder
1742
+
1753
1743
  },
1754
1744
  "editor.pasteAs.enabled": {
1755
1745
  "type": "boolean",
1756
1746
  "default": true,
1757
1747
  "markdownDescription": nls.localizeByDefault("Controls whether you can paste content in different ways."),
1758
- "scope": "language-overridable",
1759
- "restricted": false
1748
+ "scope": PreferenceScope.Folder
1749
+
1760
1750
  },
1761
1751
  "editor.pasteAs.showPasteSelector": {
1762
1752
  "type": "string",
@@ -1770,22 +1760,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1770
1760
  nls.localizeByDefault("Never show the paste selector widget. Instead the default pasting behavior is always used.")
1771
1761
  ],
1772
1762
  "default": "afterPaste",
1773
- "scope": "language-overridable",
1774
- "restricted": false
1763
+ "scope": PreferenceScope.Folder
1764
+
1775
1765
  },
1776
1766
  "editor.parameterHints.enabled": {
1777
1767
  "type": "boolean",
1778
1768
  "default": true,
1779
1769
  "description": nls.localizeByDefault("Enables a pop-up that shows parameter documentation and type information as you type."),
1780
- "scope": "language-overridable",
1781
- "restricted": false
1770
+ "scope": PreferenceScope.Folder
1771
+
1782
1772
  },
1783
1773
  "editor.parameterHints.cycle": {
1784
1774
  "type": "boolean",
1785
1775
  "default": true,
1786
1776
  "description": nls.localizeByDefault("Controls whether the parameter hints menu cycles or closes when reaching the end of the list."),
1787
- "scope": "language-overridable",
1788
- "restricted": false
1777
+ "scope": PreferenceScope.Folder
1778
+
1789
1779
  },
1790
1780
  "editor.peekWidgetDefaultFocus": {
1791
1781
  "enumDescriptions": [
@@ -1799,15 +1789,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1799
1789
  "editor"
1800
1790
  ],
1801
1791
  "default": "tree",
1802
- "scope": "language-overridable",
1803
- "restricted": false
1792
+ "scope": PreferenceScope.Folder
1793
+
1804
1794
  },
1805
1795
  "editor.definitionLinkOpensInPeek": {
1806
1796
  "description": nls.localizeByDefault("Controls whether the Go to Definition mouse gesture always opens the peek widget."),
1807
1797
  "type": "boolean",
1808
1798
  "default": false,
1809
- "scope": "language-overridable",
1810
- "restricted": false
1799
+ "scope": PreferenceScope.Folder
1800
+
1811
1801
  },
1812
1802
  "editor.quickSuggestions": {
1813
1803
  "type": "object",
@@ -1886,8 +1876,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1886
1876
  "strings": "off"
1887
1877
  },
1888
1878
  "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."),
1889
- "scope": "language-overridable",
1890
- "restricted": false
1879
+ "scope": PreferenceScope.Folder
1880
+
1891
1881
  },
1892
1882
  "editor.quickSuggestionsDelay": {
1893
1883
  "description": nls.localizeByDefault("Controls the delay in milliseconds after which quick suggestions will show up."),
@@ -1895,24 +1885,23 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1895
1885
  "default": 10,
1896
1886
  "minimum": 0,
1897
1887
  "maximum": 1073741824,
1898
- "scope": "language-overridable",
1899
- "restricted": false
1888
+ "scope": PreferenceScope.Folder
1889
+
1900
1890
  },
1901
1891
  "editor.renameOnType": {
1902
1892
  "description": nls.localizeByDefault("Controls whether the editor auto renames on type."),
1903
1893
  "markdownDeprecationMessage": "Deprecated, use `editor.linkedEditing` instead.",
1904
1894
  "type": "boolean",
1905
1895
  "default": false,
1906
- "scope": "language-overridable",
1907
- "restricted": false,
1896
+ "scope": PreferenceScope.Folder
1897
+ ,
1908
1898
  "deprecationMessage": "Deprecated, use `editor.linkedEditing` instead."
1909
1899
  },
1910
1900
  "editor.renderControlCharacters": {
1911
1901
  "description": nls.localizeByDefault("Controls whether the editor should render control characters."),
1912
- "restricted": true,
1913
1902
  "type": "boolean",
1914
1903
  "default": true,
1915
- "scope": "language-overridable"
1904
+ "scope": PreferenceScope.Folder
1916
1905
  },
1917
1906
  "editor.renderFinalNewline": {
1918
1907
  "description": nls.localizeByDefault("Render last line number when the file ends with a newline."),
@@ -1923,8 +1912,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1923
1912
  "dimmed"
1924
1913
  ],
1925
1914
  "default": "on",
1926
- "scope": "language-overridable",
1927
- "restricted": false
1915
+ "scope": PreferenceScope.Folder
1916
+
1928
1917
  },
1929
1918
  "editor.renderLineHighlight": {
1930
1919
  "enumDescriptions": [
@@ -1942,15 +1931,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1942
1931
  "all"
1943
1932
  ],
1944
1933
  "default": "line",
1945
- "scope": "language-overridable",
1946
- "restricted": false
1934
+ "scope": PreferenceScope.Folder
1935
+
1947
1936
  },
1948
1937
  "editor.renderLineHighlightOnlyWhenFocus": {
1949
1938
  "description": nls.localizeByDefault("Controls if the editor should render the current line highlight only when the editor is focused."),
1950
1939
  "type": "boolean",
1951
1940
  "default": false,
1952
- "scope": "language-overridable",
1953
- "restricted": false
1941
+ "scope": PreferenceScope.Folder
1942
+
1954
1943
  },
1955
1944
  "editor.renderWhitespace": {
1956
1945
  "enumDescriptions": [
@@ -1970,15 +1959,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
1970
1959
  "all"
1971
1960
  ],
1972
1961
  "default": "selection",
1973
- "scope": "language-overridable",
1974
- "restricted": false
1962
+ "scope": PreferenceScope.Folder
1963
+
1975
1964
  },
1976
1965
  "editor.roundedSelection": {
1977
1966
  "description": nls.localizeByDefault("Controls whether selections should have rounded corners."),
1978
1967
  "type": "boolean",
1979
1968
  "default": true,
1980
- "scope": "language-overridable",
1981
- "restricted": false
1969
+ "scope": PreferenceScope.Folder
1970
+
1982
1971
  },
1983
1972
  "editor.rulers": {
1984
1973
  "type": "array",
@@ -2008,8 +1997,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2008
1997
  },
2009
1998
  "default": [],
2010
1999
  "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."),
2011
- "scope": "language-overridable",
2012
- "restricted": false
2000
+ "scope": PreferenceScope.Folder
2001
+
2013
2002
  },
2014
2003
  "editor.scrollbar.vertical": {
2015
2004
  "type": "string",
@@ -2025,8 +2014,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2025
2014
  ],
2026
2015
  "default": "auto",
2027
2016
  "description": nls.localizeByDefault("Controls the visibility of the vertical scrollbar."),
2028
- "scope": "language-overridable",
2029
- "restricted": false
2017
+ "scope": PreferenceScope.Folder
2018
+
2030
2019
  },
2031
2020
  "editor.scrollbar.horizontal": {
2032
2021
  "type": "string",
@@ -2042,36 +2031,36 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2042
2031
  ],
2043
2032
  "default": "auto",
2044
2033
  "description": nls.localizeByDefault("Controls the visibility of the horizontal scrollbar."),
2045
- "scope": "language-overridable",
2046
- "restricted": false
2034
+ "scope": PreferenceScope.Folder
2035
+
2047
2036
  },
2048
2037
  "editor.scrollbar.verticalScrollbarSize": {
2049
2038
  "type": "number",
2050
2039
  "default": 14,
2051
2040
  "description": nls.localizeByDefault("The width of the vertical scrollbar."),
2052
- "scope": "language-overridable",
2053
- "restricted": false
2041
+ "scope": PreferenceScope.Folder
2042
+
2054
2043
  },
2055
2044
  "editor.scrollbar.horizontalScrollbarSize": {
2056
2045
  "type": "number",
2057
2046
  "default": 12,
2058
2047
  "description": nls.localizeByDefault("The height of the horizontal scrollbar."),
2059
- "scope": "language-overridable",
2060
- "restricted": false
2048
+ "scope": PreferenceScope.Folder
2049
+
2061
2050
  },
2062
2051
  "editor.scrollbar.scrollByPage": {
2063
2052
  "type": "boolean",
2064
2053
  "default": false,
2065
2054
  "description": nls.localizeByDefault("Controls whether clicks scroll by page or jump to click position."),
2066
- "scope": "language-overridable",
2067
- "restricted": false
2055
+ "scope": PreferenceScope.Folder
2056
+
2068
2057
  },
2069
2058
  "editor.scrollbar.ignoreHorizontalScrollbarInContentHeight": {
2070
2059
  "type": "boolean",
2071
2060
  "default": false,
2072
2061
  "description": nls.localizeByDefault("When set, the horizontal scrollbar will not increase the size of the editor's content."),
2073
- "scope": "language-overridable",
2074
- "restricted": false
2062
+ "scope": PreferenceScope.Folder
2063
+
2075
2064
  },
2076
2065
  "editor.scrollBeyondLastColumn": {
2077
2066
  "description": nls.localizeByDefault("Controls the number of extra characters beyond which the editor will scroll horizontally."),
@@ -2079,29 +2068,29 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2079
2068
  "default": 4,
2080
2069
  "minimum": 0,
2081
2070
  "maximum": 1073741824,
2082
- "scope": "language-overridable",
2083
- "restricted": false
2071
+ "scope": PreferenceScope.Folder
2072
+
2084
2073
  },
2085
2074
  "editor.scrollBeyondLastLine": {
2086
2075
  "description": nls.localizeByDefault("Controls whether the editor will scroll beyond the last line."),
2087
2076
  "type": "boolean",
2088
2077
  "default": true,
2089
- "scope": "language-overridable",
2090
- "restricted": false
2078
+ "scope": PreferenceScope.Folder
2079
+
2091
2080
  },
2092
2081
  "editor.scrollPredominantAxis": {
2093
2082
  "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."),
2094
2083
  "type": "boolean",
2095
2084
  "default": true,
2096
- "scope": "language-overridable",
2097
- "restricted": false
2085
+ "scope": PreferenceScope.Folder
2086
+
2098
2087
  },
2099
2088
  "editor.selectionHighlight": {
2100
2089
  "description": nls.localizeByDefault("Controls whether the editor should highlight matches similar to the selection."),
2101
2090
  "type": "boolean",
2102
2091
  "default": true,
2103
- "scope": "language-overridable",
2104
- "restricted": false
2092
+ "scope": PreferenceScope.Folder
2093
+
2105
2094
  },
2106
2095
  "editor.showFoldingControls": {
2107
2096
  "enumDescriptions": [
@@ -2117,15 +2106,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2117
2106
  "mouseover"
2118
2107
  ],
2119
2108
  "default": "mouseover",
2120
- "scope": "language-overridable",
2121
- "restricted": false
2109
+ "scope": PreferenceScope.Folder
2110
+
2122
2111
  },
2123
2112
  "editor.showUnused": {
2124
2113
  "description": nls.localizeByDefault("Controls fading out of unused code."),
2125
2114
  "type": "boolean",
2126
2115
  "default": true,
2127
- "scope": "language-overridable",
2128
- "restricted": false
2116
+ "scope": PreferenceScope.Folder
2117
+
2129
2118
  },
2130
2119
  "editor.snippetSuggestions": {
2131
2120
  "enumDescriptions": [
@@ -2143,36 +2132,36 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2143
2132
  "none"
2144
2133
  ],
2145
2134
  "default": "inline",
2146
- "scope": "language-overridable",
2147
- "restricted": false
2135
+ "scope": PreferenceScope.Folder
2136
+
2148
2137
  },
2149
2138
  "editor.smartSelect.selectLeadingAndTrailingWhitespace": {
2150
2139
  "description": nls.localizeByDefault("Whether leading and trailing whitespace should always be selected."),
2151
2140
  "default": true,
2152
2141
  "type": "boolean",
2153
- "scope": "language-overridable",
2154
- "restricted": false
2142
+ "scope": PreferenceScope.Folder
2143
+
2155
2144
  },
2156
2145
  "editor.smartSelect.selectSubwords": {
2157
2146
  "description": nls.localizeByDefault("Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."),
2158
2147
  "default": true,
2159
2148
  "type": "boolean",
2160
- "scope": "language-overridable",
2161
- "restricted": false
2149
+ "scope": PreferenceScope.Folder
2150
+
2162
2151
  },
2163
2152
  "editor.smoothScrolling": {
2164
2153
  "description": nls.localizeByDefault("Controls whether the editor will scroll using an animation."),
2165
2154
  "type": "boolean",
2166
2155
  "default": false,
2167
- "scope": "language-overridable",
2168
- "restricted": false
2156
+ "scope": PreferenceScope.Folder
2157
+
2169
2158
  },
2170
2159
  "editor.stickyScroll.enabled": {
2171
2160
  "type": "boolean",
2172
2161
  "default": true,
2173
2162
  "description": nls.localizeByDefault("Shows the nested current scopes during the scroll at the top of the editor."),
2174
- "scope": "language-overridable",
2175
- "restricted": false
2163
+ "scope": PreferenceScope.Folder
2164
+
2176
2165
  },
2177
2166
  "editor.stickyScroll.maxLineCount": {
2178
2167
  "type": "number",
@@ -2180,8 +2169,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2180
2169
  "minimum": 1,
2181
2170
  "maximum": 20,
2182
2171
  "description": nls.localizeByDefault("Defines the maximum number of sticky lines to show."),
2183
- "scope": "language-overridable",
2184
- "restricted": false
2172
+ "scope": PreferenceScope.Folder
2173
+
2185
2174
  },
2186
2175
  "editor.stickyScroll.defaultModel": {
2187
2176
  "type": "string",
@@ -2192,22 +2181,22 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2192
2181
  ],
2193
2182
  "default": "outlineModel",
2194
2183
  "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."),
2195
- "scope": "language-overridable",
2196
- "restricted": false
2184
+ "scope": PreferenceScope.Folder
2185
+
2197
2186
  },
2198
2187
  "editor.stickyScroll.scrollWithEditor": {
2199
2188
  "type": "boolean",
2200
2189
  "default": true,
2201
2190
  "description": nls.localizeByDefault("Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."),
2202
- "scope": "language-overridable",
2203
- "restricted": false
2191
+ "scope": PreferenceScope.Folder
2192
+
2204
2193
  },
2205
2194
  "editor.stickyTabStops": {
2206
2195
  "description": nls.localizeByDefault("Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."),
2207
2196
  "type": "boolean",
2208
2197
  "default": false,
2209
- "scope": "language-overridable",
2210
- "restricted": false
2198
+ "scope": PreferenceScope.Folder
2199
+
2211
2200
  },
2212
2201
  "editor.suggest.insertMode": {
2213
2202
  "type": "string",
@@ -2221,29 +2210,29 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2221
2210
  ],
2222
2211
  "default": "insert",
2223
2212
  "description": nls.localizeByDefault("Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."),
2224
- "scope": "language-overridable",
2225
- "restricted": false
2213
+ "scope": PreferenceScope.Folder
2214
+
2226
2215
  },
2227
2216
  "editor.suggest.filterGraceful": {
2228
2217
  "type": "boolean",
2229
2218
  "default": true,
2230
2219
  "description": nls.localizeByDefault("Controls whether filtering and sorting suggestions accounts for small typos."),
2231
- "scope": "language-overridable",
2232
- "restricted": false
2220
+ "scope": PreferenceScope.Folder
2221
+
2233
2222
  },
2234
2223
  "editor.suggest.localityBonus": {
2235
2224
  "type": "boolean",
2236
2225
  "default": false,
2237
2226
  "description": nls.localizeByDefault("Controls whether sorting favors words that appear close to the cursor."),
2238
- "scope": "language-overridable",
2239
- "restricted": false
2227
+ "scope": PreferenceScope.Folder
2228
+
2240
2229
  },
2241
2230
  "editor.suggest.shareSuggestSelections": {
2242
2231
  "type": "boolean",
2243
2232
  "default": false,
2244
2233
  "markdownDescription": nls.localizeByDefault("Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."),
2245
- "scope": "language-overridable",
2246
- "restricted": false
2234
+ "scope": PreferenceScope.Folder
2235
+
2247
2236
  },
2248
2237
  "editor.suggest.selectionMode": {
2249
2238
  "type": "string",
@@ -2261,267 +2250,267 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2261
2250
  ],
2262
2251
  "default": "always",
2263
2252
  "markdownDescription": nls.localizeByDefault('Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions ({0} and {1}) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`.', '`#editor.quickSuggestions#`', '`#editor.suggestOnTriggerCharacters#`'),
2264
- "scope": "language-overridable",
2265
- "restricted": false
2253
+ "scope": PreferenceScope.Folder
2254
+
2266
2255
  },
2267
2256
  "editor.suggest.snippetsPreventQuickSuggestions": {
2268
2257
  "type": "boolean",
2269
2258
  "default": false,
2270
2259
  "description": nls.localizeByDefault("Controls whether an active snippet prevents quick suggestions."),
2271
- "scope": "language-overridable",
2272
- "restricted": false
2260
+ "scope": PreferenceScope.Folder
2261
+
2273
2262
  },
2274
2263
  "editor.suggest.showIcons": {
2275
2264
  "type": "boolean",
2276
2265
  "default": true,
2277
2266
  "description": nls.localizeByDefault("Controls whether to show or hide icons in suggestions."),
2278
- "scope": "language-overridable",
2279
- "restricted": false
2267
+ "scope": PreferenceScope.Folder
2268
+
2280
2269
  },
2281
2270
  "editor.suggest.showStatusBar": {
2282
2271
  "type": "boolean",
2283
2272
  "default": false,
2284
2273
  "description": nls.localizeByDefault("Controls the visibility of the status bar at the bottom of the suggest widget."),
2285
- "scope": "language-overridable",
2286
- "restricted": false
2274
+ "scope": PreferenceScope.Folder
2275
+
2287
2276
  },
2288
2277
  "editor.suggest.preview": {
2289
2278
  "type": "boolean",
2290
2279
  "default": false,
2291
2280
  "description": nls.localizeByDefault("Controls whether to preview the suggestion outcome in the editor."),
2292
- "scope": "language-overridable",
2293
- "restricted": false
2281
+ "scope": PreferenceScope.Folder
2282
+
2294
2283
  },
2295
2284
  "editor.suggest.showInlineDetails": {
2296
2285
  "type": "boolean",
2297
2286
  "default": true,
2298
2287
  "description": nls.localizeByDefault("Controls whether suggest details show inline with the label or only in the details widget."),
2299
- "scope": "language-overridable",
2300
- "restricted": false
2288
+ "scope": PreferenceScope.Folder
2289
+
2301
2290
  },
2302
2291
  "editor.suggest.maxVisibleSuggestions": {
2303
2292
  "type": "number",
2304
2293
  "deprecationMessage": "This setting is deprecated. The suggest widget can now be resized.",
2305
2294
  "default": 0,
2306
- "scope": "language-overridable",
2307
- "restricted": false
2295
+ "scope": PreferenceScope.Folder
2296
+
2308
2297
  },
2309
2298
  "editor.suggest.filteredTypes": {
2310
2299
  "type": "object",
2311
2300
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead.",
2312
2301
  "default": {},
2313
- "scope": "language-overridable",
2314
- "restricted": false
2302
+ "scope": PreferenceScope.Folder
2303
+
2315
2304
  },
2316
2305
  "editor.suggest.showMethods": {
2317
2306
  "type": "boolean",
2318
2307
  "default": true,
2319
2308
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `method`-suggestions."),
2320
- "scope": "language-overridable",
2321
- "restricted": false
2309
+ "scope": PreferenceScope.Folder
2310
+
2322
2311
  },
2323
2312
  "editor.suggest.showFunctions": {
2324
2313
  "type": "boolean",
2325
2314
  "default": true,
2326
2315
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `function`-suggestions."),
2327
- "scope": "language-overridable",
2328
- "restricted": false
2316
+ "scope": PreferenceScope.Folder
2317
+
2329
2318
  },
2330
2319
  "editor.suggest.showConstructors": {
2331
2320
  "type": "boolean",
2332
2321
  "default": true,
2333
2322
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `constructor`-suggestions."),
2334
- "scope": "language-overridable",
2335
- "restricted": false
2323
+ "scope": PreferenceScope.Folder
2324
+
2336
2325
  },
2337
2326
  "editor.suggest.showDeprecated": {
2338
2327
  "type": "boolean",
2339
2328
  "default": true,
2340
2329
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `deprecated`-suggestions."),
2341
- "scope": "language-overridable",
2342
- "restricted": false
2330
+ "scope": PreferenceScope.Folder
2331
+
2343
2332
  },
2344
2333
  "editor.suggest.matchOnWordStartOnly": {
2345
2334
  "type": "boolean",
2346
2335
  "default": true,
2347
2336
  "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."),
2348
- "scope": "language-overridable",
2349
- "restricted": false
2337
+ "scope": PreferenceScope.Folder
2338
+
2350
2339
  },
2351
2340
  "editor.suggest.showFields": {
2352
2341
  "type": "boolean",
2353
2342
  "default": true,
2354
2343
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `field`-suggestions."),
2355
- "scope": "language-overridable",
2356
- "restricted": false
2344
+ "scope": PreferenceScope.Folder
2345
+
2357
2346
  },
2358
2347
  "editor.suggest.showVariables": {
2359
2348
  "type": "boolean",
2360
2349
  "default": true,
2361
2350
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `variable`-suggestions."),
2362
- "scope": "language-overridable",
2363
- "restricted": false
2351
+ "scope": PreferenceScope.Folder
2352
+
2364
2353
  },
2365
2354
  "editor.suggest.showClasses": {
2366
2355
  "type": "boolean",
2367
2356
  "default": true,
2368
2357
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `class`-suggestions."),
2369
- "scope": "language-overridable",
2370
- "restricted": false
2358
+ "scope": PreferenceScope.Folder
2359
+
2371
2360
  },
2372
2361
  "editor.suggest.showStructs": {
2373
2362
  "type": "boolean",
2374
2363
  "default": true,
2375
2364
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `struct`-suggestions."),
2376
- "scope": "language-overridable",
2377
- "restricted": false
2365
+ "scope": PreferenceScope.Folder
2366
+
2378
2367
  },
2379
2368
  "editor.suggest.showInterfaces": {
2380
2369
  "type": "boolean",
2381
2370
  "default": true,
2382
2371
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `interface`-suggestions."),
2383
- "scope": "language-overridable",
2384
- "restricted": false
2372
+ "scope": PreferenceScope.Folder
2373
+
2385
2374
  },
2386
2375
  "editor.suggest.showModules": {
2387
2376
  "type": "boolean",
2388
2377
  "default": true,
2389
2378
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `module`-suggestions."),
2390
- "scope": "language-overridable",
2391
- "restricted": false
2379
+ "scope": PreferenceScope.Folder
2380
+
2392
2381
  },
2393
2382
  "editor.suggest.showProperties": {
2394
2383
  "type": "boolean",
2395
2384
  "default": true,
2396
2385
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `property`-suggestions."),
2397
- "scope": "language-overridable",
2398
- "restricted": false
2386
+ "scope": PreferenceScope.Folder
2387
+
2399
2388
  },
2400
2389
  "editor.suggest.showEvents": {
2401
2390
  "type": "boolean",
2402
2391
  "default": true,
2403
2392
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `event`-suggestions."),
2404
- "scope": "language-overridable",
2405
- "restricted": false
2393
+ "scope": PreferenceScope.Folder
2394
+
2406
2395
  },
2407
2396
  "editor.suggest.showOperators": {
2408
2397
  "type": "boolean",
2409
2398
  "default": true,
2410
2399
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `operator`-suggestions."),
2411
- "scope": "language-overridable",
2412
- "restricted": false
2400
+ "scope": PreferenceScope.Folder
2401
+
2413
2402
  },
2414
2403
  "editor.suggest.showUnits": {
2415
2404
  "type": "boolean",
2416
2405
  "default": true,
2417
2406
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `unit`-suggestions."),
2418
- "scope": "language-overridable",
2419
- "restricted": false
2407
+ "scope": PreferenceScope.Folder
2408
+
2420
2409
  },
2421
2410
  "editor.suggest.showValues": {
2422
2411
  "type": "boolean",
2423
2412
  "default": true,
2424
2413
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `value`-suggestions."),
2425
- "scope": "language-overridable",
2426
- "restricted": false
2414
+ "scope": PreferenceScope.Folder
2415
+
2427
2416
  },
2428
2417
  "editor.suggest.showConstants": {
2429
2418
  "type": "boolean",
2430
2419
  "default": true,
2431
2420
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `constant`-suggestions."),
2432
- "scope": "language-overridable",
2433
- "restricted": false
2421
+ "scope": PreferenceScope.Folder
2422
+
2434
2423
  },
2435
2424
  "editor.suggest.showEnums": {
2436
2425
  "type": "boolean",
2437
2426
  "default": true,
2438
2427
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `enum`-suggestions."),
2439
- "scope": "language-overridable",
2440
- "restricted": false
2428
+ "scope": PreferenceScope.Folder
2429
+
2441
2430
  },
2442
2431
  "editor.suggest.showEnumMembers": {
2443
2432
  "type": "boolean",
2444
2433
  "default": true,
2445
2434
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `enumMember`-suggestions."),
2446
- "scope": "language-overridable",
2447
- "restricted": false
2435
+ "scope": PreferenceScope.Folder
2436
+
2448
2437
  },
2449
2438
  "editor.suggest.showKeywords": {
2450
2439
  "type": "boolean",
2451
2440
  "default": true,
2452
2441
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `keyword`-suggestions."),
2453
- "scope": "language-overridable",
2454
- "restricted": false
2442
+ "scope": PreferenceScope.Folder
2443
+
2455
2444
  },
2456
2445
  "editor.suggest.showWords": {
2457
2446
  "type": "boolean",
2458
2447
  "default": true,
2459
2448
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `text`-suggestions."),
2460
- "scope": "language-overridable",
2461
- "restricted": false
2449
+ "scope": PreferenceScope.Folder
2450
+
2462
2451
  },
2463
2452
  "editor.suggest.showColors": {
2464
2453
  "type": "boolean",
2465
2454
  "default": true,
2466
2455
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `color`-suggestions."),
2467
- "scope": "language-overridable",
2468
- "restricted": false
2456
+ "scope": PreferenceScope.Folder
2457
+
2469
2458
  },
2470
2459
  "editor.suggest.showFiles": {
2471
2460
  "type": "boolean",
2472
2461
  "default": true,
2473
2462
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `file`-suggestions."),
2474
- "scope": "language-overridable",
2475
- "restricted": false
2463
+ "scope": PreferenceScope.Folder
2464
+
2476
2465
  },
2477
2466
  "editor.suggest.showReferences": {
2478
2467
  "type": "boolean",
2479
2468
  "default": true,
2480
2469
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `reference`-suggestions."),
2481
- "scope": "language-overridable",
2482
- "restricted": false
2470
+ "scope": PreferenceScope.Folder
2471
+
2483
2472
  },
2484
2473
  "editor.suggest.showCustomcolors": {
2485
2474
  "type": "boolean",
2486
2475
  "default": true,
2487
2476
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `customcolor`-suggestions."),
2488
- "scope": "language-overridable",
2489
- "restricted": false
2477
+ "scope": PreferenceScope.Folder
2478
+
2490
2479
  },
2491
2480
  "editor.suggest.showFolders": {
2492
2481
  "type": "boolean",
2493
2482
  "default": true,
2494
2483
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `folder`-suggestions."),
2495
- "scope": "language-overridable",
2496
- "restricted": false
2484
+ "scope": PreferenceScope.Folder
2485
+
2497
2486
  },
2498
2487
  "editor.suggest.showTypeParameters": {
2499
2488
  "type": "boolean",
2500
2489
  "default": true,
2501
2490
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `typeParameter`-suggestions."),
2502
- "scope": "language-overridable",
2503
- "restricted": false
2491
+ "scope": PreferenceScope.Folder
2492
+
2504
2493
  },
2505
2494
  "editor.suggest.showSnippets": {
2506
2495
  "type": "boolean",
2507
2496
  "default": true,
2508
2497
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `snippet`-suggestions."),
2509
- "scope": "language-overridable",
2510
- "restricted": false
2498
+ "scope": PreferenceScope.Folder
2499
+
2511
2500
  },
2512
2501
  "editor.suggest.showUsers": {
2513
2502
  "type": "boolean",
2514
2503
  "default": true,
2515
2504
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `user`-suggestions."),
2516
- "scope": "language-overridable",
2517
- "restricted": false
2505
+ "scope": PreferenceScope.Folder
2506
+
2518
2507
  },
2519
2508
  "editor.suggest.showIssues": {
2520
2509
  "type": "boolean",
2521
2510
  "default": true,
2522
2511
  "markdownDescription": nls.localizeByDefault("When enabled IntelliSense shows `issues`-suggestions."),
2523
- "scope": "language-overridable",
2524
- "restricted": false
2512
+ "scope": PreferenceScope.Folder
2513
+
2525
2514
  },
2526
2515
  "editor.suggestFontSize": {
2527
2516
  "markdownDescription": nls.localize("theia/editor/editor.suggestFontSize", "Font size for the suggest widget. When set to `0`, the value of `#editor.fontSize#` is used."),
@@ -2529,8 +2518,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2529
2518
  "default": 0,
2530
2519
  "minimum": 0,
2531
2520
  "maximum": 1000,
2532
- "scope": "language-overridable",
2533
- "restricted": false
2521
+ "scope": PreferenceScope.Folder
2522
+
2534
2523
  },
2535
2524
  "editor.suggestLineHeight": {
2536
2525
  "markdownDescription": nls.localize("theia/editor/editor.suggestLineHeight", "Line height for the suggest widget. When set to `0`, the value of `#editor.lineHeight#` is used. The minimum value is 8."),
@@ -2538,15 +2527,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2538
2527
  "default": 0,
2539
2528
  "minimum": 0,
2540
2529
  "maximum": 1000,
2541
- "scope": "language-overridable",
2542
- "restricted": false
2530
+ "scope": PreferenceScope.Folder
2531
+
2543
2532
  },
2544
2533
  "editor.suggestOnTriggerCharacters": {
2545
2534
  "description": nls.localizeByDefault("Controls whether suggestions should automatically show up when typing trigger characters."),
2546
2535
  "type": "boolean",
2547
2536
  "default": true,
2548
- "scope": "language-overridable",
2549
- "restricted": false
2537
+ "scope": PreferenceScope.Folder
2538
+
2550
2539
  },
2551
2540
  "editor.suggestSelection": {
2552
2541
  "markdownEnumDescriptions": [
@@ -2562,8 +2551,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2562
2551
  "recentlyUsedByPrefix"
2563
2552
  ],
2564
2553
  "default": "first",
2565
- "scope": "language-overridable",
2566
- "restricted": false
2554
+ "scope": PreferenceScope.Folder
2555
+
2567
2556
  },
2568
2557
  "editor.tabCompletion": {
2569
2558
  "enumDescriptions": [
@@ -2579,11 +2568,10 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2579
2568
  "onlySnippets"
2580
2569
  ],
2581
2570
  "default": "off",
2582
- "scope": "language-overridable",
2583
- "restricted": false
2571
+ "scope": PreferenceScope.Folder
2572
+
2584
2573
  },
2585
2574
  "editor.unicodeHighlight.nonBasicASCII": {
2586
- "restricted": true,
2587
2575
  "type": [
2588
2576
  "boolean",
2589
2577
  "string"
@@ -2595,24 +2583,21 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2595
2583
  ],
2596
2584
  "default": "inUntrustedWorkspace",
2597
2585
  "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."),
2598
- "scope": "language-overridable"
2586
+ "scope": PreferenceScope.Folder
2599
2587
  },
2600
2588
  "editor.unicodeHighlight.invisibleCharacters": {
2601
- "restricted": true,
2602
2589
  "type": "boolean",
2603
2590
  "default": true,
2604
2591
  "description": nls.localizeByDefault("Controls whether characters that just reserve space or have no width at all are highlighted."),
2605
- "scope": "language-overridable"
2592
+ "scope": PreferenceScope.Folder
2606
2593
  },
2607
2594
  "editor.unicodeHighlight.ambiguousCharacters": {
2608
- "restricted": true,
2609
2595
  "type": "boolean",
2610
2596
  "default": true,
2611
2597
  "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."),
2612
- "scope": "language-overridable"
2598
+ "scope": PreferenceScope.Folder
2613
2599
  },
2614
2600
  "editor.unicodeHighlight.includeComments": {
2615
- "restricted": true,
2616
2601
  "type": [
2617
2602
  "boolean",
2618
2603
  "string"
@@ -2624,10 +2609,9 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2624
2609
  ],
2625
2610
  "default": "inUntrustedWorkspace",
2626
2611
  "description": nls.localizeByDefault("Controls whether characters in comments should also be subject to Unicode highlighting."),
2627
- "scope": "language-overridable"
2612
+ "scope": PreferenceScope.Folder
2628
2613
  },
2629
2614
  "editor.unicodeHighlight.includeStrings": {
2630
- "restricted": true,
2631
2615
  "type": [
2632
2616
  "boolean",
2633
2617
  "string"
@@ -2639,20 +2623,18 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2639
2623
  ],
2640
2624
  "default": true,
2641
2625
  "description": nls.localizeByDefault("Controls whether characters in strings should also be subject to Unicode highlighting."),
2642
- "scope": "language-overridable"
2626
+ "scope": PreferenceScope.Folder
2643
2627
  },
2644
2628
  "editor.unicodeHighlight.allowedCharacters": {
2645
- "restricted": true,
2646
2629
  "type": "object",
2647
2630
  "default": {},
2648
2631
  "description": nls.localizeByDefault("Defines allowed characters that are not being highlighted."),
2649
2632
  "additionalProperties": {
2650
2633
  "type": "boolean"
2651
2634
  },
2652
- "scope": "language-overridable"
2635
+ "scope": PreferenceScope.Folder
2653
2636
  },
2654
2637
  "editor.unicodeHighlight.allowedLocales": {
2655
- "restricted": true,
2656
2638
  "type": "object",
2657
2639
  "additionalProperties": {
2658
2640
  "type": "boolean"
@@ -2662,7 +2644,7 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2662
2644
  "_vscode": true
2663
2645
  },
2664
2646
  "description": nls.localizeByDefault("Unicode characters that are common in allowed locales are not being highlighted."),
2665
- "scope": "language-overridable"
2647
+ "scope": PreferenceScope.Folder
2666
2648
  },
2667
2649
  "editor.unusualLineTerminators": {
2668
2650
  "enumDescriptions": [
@@ -2678,15 +2660,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2678
2660
  "prompt"
2679
2661
  ],
2680
2662
  "default": "prompt",
2681
- "scope": "language-overridable",
2682
- "restricted": false
2663
+ "scope": PreferenceScope.Folder
2664
+
2683
2665
  },
2684
2666
  "editor.useTabStops": {
2685
2667
  "description": nls.localizeByDefault("Spaces and tabs are inserted and deleted in alignment with tab stops."),
2686
2668
  "type": "boolean",
2687
2669
  "default": true,
2688
- "scope": "language-overridable",
2689
- "restricted": false
2670
+ "scope": PreferenceScope.Folder
2671
+
2690
2672
  },
2691
2673
  "editor.wordBreak": {
2692
2674
  "markdownEnumDescriptions": [
@@ -2700,8 +2682,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2700
2682
  "keepAll"
2701
2683
  ],
2702
2684
  "default": "normal",
2703
- "scope": "language-overridable",
2704
- "restricted": false
2685
+ "scope": PreferenceScope.Folder
2686
+
2705
2687
  },
2706
2688
  "editor.wordSegmenterLocales": {
2707
2689
  "anyOf": [
@@ -2718,15 +2700,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2718
2700
  }
2719
2701
  ],
2720
2702
  "default": [],
2721
- "scope": "language-overridable",
2722
- "restricted": false
2703
+ "scope": PreferenceScope.Folder
2704
+
2723
2705
  },
2724
2706
  "editor.wordSeparators": {
2725
2707
  "description": nls.localizeByDefault("Characters that will be used as word separators when doing word related navigations or operations."),
2726
2708
  "type": "string",
2727
2709
  "default": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
2728
- "scope": "language-overridable",
2729
- "restricted": false
2710
+ "scope": PreferenceScope.Folder
2711
+
2730
2712
  },
2731
2713
  "editor.wordWrap": {
2732
2714
  "markdownEnumDescriptions": [
@@ -2744,8 +2726,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2744
2726
  "bounded"
2745
2727
  ],
2746
2728
  "default": "off",
2747
- "scope": "language-overridable",
2748
- "restricted": false
2729
+ "scope": PreferenceScope.Folder
2730
+
2749
2731
  },
2750
2732
  "editor.wordWrapColumn": {
2751
2733
  "markdownDescription": nls.localizeByDefault("Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."),
@@ -2753,8 +2735,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2753
2735
  "default": 80,
2754
2736
  "minimum": 1,
2755
2737
  "maximum": 1073741824,
2756
- "scope": "language-overridable",
2757
- "restricted": false
2738
+ "scope": PreferenceScope.Folder
2739
+
2758
2740
  },
2759
2741
  "editor.wrappingIndent": {
2760
2742
  "type": "string",
@@ -2772,8 +2754,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2772
2754
  ],
2773
2755
  "description": nls.localizeByDefault("Controls the indentation of wrapped lines."),
2774
2756
  "default": "same",
2775
- "scope": "language-overridable",
2776
- "restricted": false
2757
+ "scope": PreferenceScope.Folder
2758
+
2777
2759
  },
2778
2760
  "editor.wrappingStrategy": {
2779
2761
  "enumDescriptions": [
@@ -2787,15 +2769,15 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2787
2769
  ],
2788
2770
  "default": "simple",
2789
2771
  "description": nls.localizeByDefault("Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."),
2790
- "scope": "language-overridable",
2791
- "restricted": false
2772
+ "scope": PreferenceScope.Folder
2773
+
2792
2774
  },
2793
2775
  "editor.showDeprecated": {
2794
2776
  "description": nls.localizeByDefault("Controls strikethrough deprecated variables."),
2795
2777
  "type": "boolean",
2796
2778
  "default": true,
2797
- "scope": "language-overridable",
2798
- "restricted": false
2779
+ "scope": PreferenceScope.Folder
2780
+
2799
2781
  },
2800
2782
  "editor.inlayHints.enabled": {
2801
2783
  "type": "string",
@@ -2813,43 +2795,43 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2813
2795
  nls.localize("theia/editor/editor.inlayHints.enabled2", "Inlay hints are hidden by default and show when holding Ctrl+Alt"),
2814
2796
  nls.localizeByDefault("Inlay hints are disabled")
2815
2797
  ],
2816
- "scope": "language-overridable",
2817
- "restricted": false
2798
+ "scope": PreferenceScope.Folder
2799
+
2818
2800
  },
2819
2801
  "editor.inlayHints.fontSize": {
2820
2802
  "type": "number",
2821
2803
  "default": 0,
2822
2804
  "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."),
2823
- "scope": "language-overridable",
2824
- "restricted": false
2805
+ "scope": PreferenceScope.Folder
2806
+
2825
2807
  },
2826
2808
  "editor.inlayHints.fontFamily": {
2827
2809
  "type": "string",
2828
2810
  "default": "",
2829
2811
  "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."),
2830
- "scope": "language-overridable",
2831
- "restricted": false
2812
+ "scope": PreferenceScope.Folder
2813
+
2832
2814
  },
2833
2815
  "editor.inlayHints.padding": {
2834
2816
  "type": "boolean",
2835
2817
  "default": false,
2836
2818
  "description": nls.localizeByDefault("Enables the padding around the inlay hints in the editor."),
2837
- "scope": "language-overridable",
2838
- "restricted": false
2819
+ "scope": PreferenceScope.Folder
2820
+
2839
2821
  },
2840
2822
  "editor.inlayHints.maximumLength": {
2841
2823
  "type": "number",
2842
2824
  "default": 43,
2843
2825
  "markdownDescription": nls.localizeByDefault("Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"),
2844
- "scope": "language-overridable",
2845
- "restricted": false
2826
+ "scope": PreferenceScope.Folder
2827
+
2846
2828
  },
2847
2829
  "editor.tabFocusMode": {
2848
2830
  "markdownDescription": nls.localizeByDefault("Controls whether the editor receives tabs or defers them to the workbench for navigation."),
2849
2831
  "type": "boolean",
2850
2832
  "default": false,
2851
- "scope": "language-overridable",
2852
- "restricted": false
2833
+ "scope": PreferenceScope.Folder
2834
+
2853
2835
  },
2854
2836
  "editor.defaultColorDecorators": {
2855
2837
  "enumDescriptions": [
@@ -2865,8 +2847,8 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2865
2847
  "never"
2866
2848
  ],
2867
2849
  "default": "auto",
2868
- "scope": "language-overridable",
2869
- "restricted": false
2850
+ "scope": PreferenceScope.Folder
2851
+
2870
2852
  },
2871
2853
  "editor.colorDecoratorsActivatedOn": {
2872
2854
  "enumDescriptions": [
@@ -2882,43 +2864,43 @@ export const editorGeneratedPreferenceProperties: PreferenceSchema['properties']
2882
2864
  "click"
2883
2865
  ],
2884
2866
  "default": "clickAndHover",
2885
- "scope": "language-overridable",
2886
- "restricted": false
2867
+ "scope": PreferenceScope.Folder
2868
+
2887
2869
  },
2888
2870
  "editor.inlineCompletionsAccessibilityVerbose": {
2889
2871
  "description": nls.localizeByDefault("Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."),
2890
2872
  "type": "boolean",
2891
2873
  "default": false,
2892
- "scope": "language-overridable",
2893
- "restricted": false
2874
+ "scope": PreferenceScope.Folder
2875
+
2894
2876
  },
2895
2877
  "editor.codeActionWidget.showHeaders": {
2896
2878
  "type": "boolean",
2897
- "scope": "language-overridable",
2879
+ "scope": PreferenceScope.Folder,
2898
2880
  "description": nls.localizeByDefault("Enable/disable showing group headers in the Code Action menu."),
2899
2881
  "default": true,
2900
- "restricted": false
2882
+
2901
2883
  },
2902
2884
  "editor.codeActionWidget.includeNearbyQuickFixes": {
2903
2885
  "type": "boolean",
2904
- "scope": "language-overridable",
2886
+ "scope": PreferenceScope.Folder,
2905
2887
  "description": nls.localizeByDefault("Enable/disable showing nearest Quick Fix within a line when not currently on a diagnostic."),
2906
2888
  "default": true,
2907
- "restricted": false
2889
+
2908
2890
  },
2909
2891
  "editor.codeActions.triggerOnFocusChange": {
2910
2892
  "type": "boolean",
2911
- "scope": "language-overridable",
2893
+ "scope": PreferenceScope.Folder,
2912
2894
  "markdownDescription": nls.localize("theia/editor/editor.codeActions.triggerOnFocusChange", "Enable triggering `#editor.codeActionsOnSave#` when `#files.autoSave#` is set to `afterDelay`. Code Actions must be set to `always` to be triggered for window and focus changes."),
2913
2895
  "default": false,
2914
- "restricted": false
2896
+
2915
2897
  },
2916
2898
  "editor.rename.enablePreview": {
2917
- "scope": "language-overridable",
2899
+ "scope": PreferenceScope.Folder,
2918
2900
  "description": nls.localizeByDefault("Enable/disable the ability to preview changes before renaming"),
2919
2901
  "default": true,
2920
2902
  "type": "boolean",
2921
- "restricted": false
2903
+
2922
2904
  },
2923
2905
  "editor.find.globalFindClipboard": {
2924
2906
  "type": "boolean",