@theia/editor 1.65.0-next.16 → 1.65.0-next.28

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