@theia/editor 1.46.1 → 1.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/lib/browser/decorations/editor-decorator.js +2 -7
  2. package/lib/browser/decorations/editor-decorator.js.map +1 -1
  3. package/lib/browser/decorations/index.js +4 -13
  4. package/lib/browser/decorations/index.js.map +1 -1
  5. package/lib/browser/diff-navigator.d.ts +0 -1
  6. package/lib/browser/diff-navigator.d.ts.map +1 -1
  7. package/lib/browser/diff-navigator.js.map +1 -1
  8. package/lib/browser/editor-command.js +24 -32
  9. package/lib/browser/editor-command.js.map +1 -1
  10. package/lib/browser/editor-contribution.js +14 -22
  11. package/lib/browser/editor-contribution.js.map +1 -1
  12. package/lib/browser/editor-generated-preference-schema.d.ts +38 -5
  13. package/lib/browser/editor-generated-preference-schema.d.ts.map +1 -1
  14. package/lib/browser/editor-generated-preference-schema.js +413 -278
  15. package/lib/browser/editor-generated-preference-schema.js.map +1 -1
  16. package/lib/browser/editor-keybinding.js +2 -7
  17. package/lib/browser/editor-keybinding.js.map +1 -1
  18. package/lib/browser/editor-linenumber-contribution.d.ts.map +1 -1
  19. package/lib/browser/editor-linenumber-contribution.js +9 -18
  20. package/lib/browser/editor-linenumber-contribution.js.map +1 -1
  21. package/lib/browser/editor-manager.js +15 -23
  22. package/lib/browser/editor-manager.js.map +1 -1
  23. package/lib/browser/editor-menu.js +2 -7
  24. package/lib/browser/editor-menu.js.map +1 -1
  25. package/lib/browser/editor-navigation-contribution.js +18 -26
  26. package/lib/browser/editor-navigation-contribution.js.map +1 -1
  27. package/lib/browser/editor-variable-contribution.js +4 -12
  28. package/lib/browser/editor-variable-contribution.js.map +1 -1
  29. package/lib/browser/editor-widget-factory.js +8 -16
  30. package/lib/browser/editor-widget-factory.js.map +1 -1
  31. package/lib/browser/editor-widget.d.ts.map +1 -1
  32. package/lib/browser/editor-widget.js +8 -0
  33. package/lib/browser/editor-widget.js.map +1 -1
  34. package/lib/browser/editor.d.ts +3 -1
  35. package/lib/browser/editor.d.ts.map +1 -1
  36. package/lib/browser/editor.js.map +1 -1
  37. package/lib/browser/index.js +11 -20
  38. package/lib/browser/index.js.map +1 -1
  39. package/lib/browser/language-status/editor-language-status-service.js +12 -20
  40. package/lib/browser/language-status/editor-language-status-service.js.map +1 -1
  41. package/lib/browser/navigation/navigation-location-service.js +10 -18
  42. package/lib/browser/navigation/navigation-location-service.js.map +1 -1
  43. package/lib/browser/navigation/navigation-location-similarity.js +2 -7
  44. package/lib/browser/navigation/navigation-location-similarity.js.map +1 -1
  45. package/lib/browser/navigation/navigation-location-updater.js +2 -7
  46. package/lib/browser/navigation/navigation-location-updater.js.map +1 -1
  47. package/lib/browser/quick-editor-service.js +8 -16
  48. package/lib/browser/quick-editor-service.js.map +1 -1
  49. package/lib/browser/undo-redo-service.js +2 -7
  50. package/lib/browser/undo-redo-service.js.map +1 -1
  51. package/package.json +6 -5
  52. package/src/browser/diff-navigator.ts +0 -1
  53. package/src/browser/editor-generated-preference-schema.ts +451 -283
  54. package/src/browser/editor-linenumber-contribution.ts +1 -2
  55. package/src/browser/editor-widget.ts +8 -1
  56. package/src/browser/editor.ts +3 -1
@@ -28,43 +28,54 @@ exports.editorGeneratedPreferenceProperties = {
28
28
  "type": "number",
29
29
  "default": 4,
30
30
  "minimum": 1,
31
- "markdownDescription": core_1.nls.localizeByDefault('The number of spaces a tab is equal to. This setting is overridden based on the file contents when {0} is on.', '`#editor.detectIndentation#`'),
32
- "scope": "language-overridable",
31
+ "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
+ "restricted": false
33
+ },
34
+ "editor.indentSize": {
35
+ "anyOf": [
36
+ {
37
+ "type": "string",
38
+ "enum": [
39
+ "tabSize"
40
+ ]
41
+ },
42
+ {
43
+ "type": "number",
44
+ "minimum": 1
45
+ }
46
+ ],
47
+ "default": "tabSize",
48
+ "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."),
33
49
  "restricted": false
34
50
  },
35
51
  "editor.insertSpaces": {
36
52
  "type": "boolean",
37
53
  "default": true,
38
- "markdownDescription": core_1.nls.localizeByDefault('Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when {0} is on.', `#editor.detectIndentation#`),
39
- "scope": "language-overridable",
54
+ "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."),
40
55
  "restricted": false
41
56
  },
42
57
  "editor.detectIndentation": {
43
58
  "type": "boolean",
44
59
  "default": true,
45
- "markdownDescription": core_1.nls.localizeByDefault('Controls whether {0} and {1} will be automatically detected when a file is opened based on the file contents.', '`#editor.tabSize#`', '`#editor.insertSpaces#`'),
46
- "scope": "language-overridable",
60
+ "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."),
47
61
  "restricted": false
48
62
  },
49
63
  "editor.trimAutoWhitespace": {
50
64
  "type": "boolean",
51
65
  "default": true,
52
66
  "description": core_1.nls.localizeByDefault("Remove trailing auto inserted whitespace."),
53
- "scope": "language-overridable",
54
67
  "restricted": false
55
68
  },
56
69
  "editor.largeFileOptimizations": {
57
70
  "type": "boolean",
58
71
  "default": true,
59
72
  "description": core_1.nls.localizeByDefault("Special handling for large files to disable certain memory intensive features."),
60
- "scope": "language-overridable",
61
73
  "restricted": false
62
74
  },
63
75
  "editor.wordBasedSuggestions": {
64
76
  "type": "boolean",
65
77
  "default": true,
66
78
  "description": core_1.nls.localizeByDefault("Controls whether completions should be computed based on words in the document."),
67
- "scope": "language-overridable",
68
79
  "restricted": false
69
80
  },
70
81
  "editor.wordBasedSuggestionsMode": {
@@ -80,7 +91,6 @@ exports.editorGeneratedPreferenceProperties = {
80
91
  core_1.nls.localizeByDefault("Suggest words from all open documents.")
81
92
  ],
82
93
  "description": core_1.nls.localizeByDefault("Controls from which documents word based completions are computed."),
83
- "scope": "language-overridable",
84
94
  "restricted": false
85
95
  },
86
96
  "editor.semanticHighlighting.enabled": {
@@ -96,21 +106,42 @@ exports.editorGeneratedPreferenceProperties = {
96
106
  ],
97
107
  "default": "configuredByTheme",
98
108
  "description": core_1.nls.localizeByDefault("Controls whether the semanticHighlighting is shown for the languages that support it."),
99
- "scope": "language-overridable",
100
109
  "restricted": false
101
110
  },
102
111
  "editor.stablePeek": {
103
112
  "type": "boolean",
104
113
  "default": false,
105
- "markdownDescription": core_1.nls.localizeByDefault('Keep peek editors open even when double-clicking their content or when hitting `Escape`.'),
106
- "scope": "language-overridable",
114
+ "markdownDescription": core_1.nls.localizeByDefault("Keep peek editors open even when double-clicking their content or when hitting `Escape`."),
107
115
  "restricted": false
108
116
  },
109
117
  "editor.maxTokenizationLineLength": {
110
118
  "type": "integer",
111
119
  "default": 20000,
112
120
  "description": core_1.nls.localizeByDefault("Lines above this length will not be tokenized for performance reasons"),
113
- "scope": "language-overridable",
121
+ "restricted": false
122
+ },
123
+ "editor.experimental.asyncTokenization": {
124
+ "type": "boolean",
125
+ "default": false,
126
+ "description": core_1.nls.localizeByDefault("Controls whether the tokenization should happen asynchronously on a web worker."),
127
+ "tags": [
128
+ "experimental"
129
+ ],
130
+ "restricted": false
131
+ },
132
+ "editor.experimental.asyncTokenizationLogging": {
133
+ "type": "boolean",
134
+ "default": false,
135
+ "description": core_1.nls.localizeByDefault("Controls whether async tokenization should be logged. For debugging only."),
136
+ "restricted": false
137
+ },
138
+ "editor.experimental.asyncTokenizationVerification": {
139
+ "type": "boolean",
140
+ "default": false,
141
+ "description": core_1.nls.localizeByDefault("Controls whether async tokenization should be verified against legacy background tokenization. Might slow down tokenization. For debugging only."),
142
+ "tags": [
143
+ "experimental"
144
+ ],
114
145
  "restricted": false
115
146
  },
116
147
  "editor.language.brackets": {
@@ -133,7 +164,6 @@ exports.editorGeneratedPreferenceProperties = {
133
164
  }
134
165
  ]
135
166
  },
136
- "scope": "language-overridable",
137
167
  "restricted": false
138
168
  },
139
169
  "editor.language.colorizedBracketPairs": {
@@ -156,56 +186,60 @@ exports.editorGeneratedPreferenceProperties = {
156
186
  }
157
187
  ]
158
188
  },
159
- "scope": "language-overridable",
160
189
  "restricted": false
161
190
  },
162
191
  "diffEditor.maxComputationTime": {
163
192
  "type": "number",
164
193
  "default": 5000,
165
194
  "description": core_1.nls.localizeByDefault("Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout."),
166
- "scope": "language-overridable",
167
195
  "restricted": false
168
196
  },
169
197
  "diffEditor.maxFileSize": {
170
198
  "type": "number",
171
199
  "default": 50,
172
200
  "description": core_1.nls.localizeByDefault("Maximum file size in MB for which to compute diffs. Use 0 for no limit."),
173
- "scope": "language-overridable",
174
201
  "restricted": false
175
202
  },
176
203
  "diffEditor.renderSideBySide": {
177
204
  "type": "boolean",
178
205
  "default": true,
179
206
  "description": core_1.nls.localizeByDefault("Controls whether the diff editor shows the diff side by side or inline."),
180
- "scope": "language-overridable",
207
+ "restricted": false
208
+ },
209
+ "diffEditor.renderSideBySideInlineBreakpoint": {
210
+ "type": "number",
211
+ "default": 900,
212
+ "description": core_1.nls.localizeByDefault("If the diff editor width is smaller than this value, the inline view is used."),
213
+ "restricted": false
214
+ },
215
+ "diffEditor.useInlineViewWhenSpaceIsLimited": {
216
+ "type": "boolean",
217
+ "default": true,
218
+ "description": core_1.nls.localizeByDefault("If enabled and the editor width is too small, the inline view is used."),
181
219
  "restricted": false
182
220
  },
183
221
  "diffEditor.renderMarginRevertIcon": {
184
222
  "type": "boolean",
185
223
  "default": true,
186
224
  "description": core_1.nls.localizeByDefault("When enabled, the diff editor shows arrows in its glyph margin to revert changes."),
187
- "scope": "language-overridable",
188
225
  "restricted": false
189
226
  },
190
227
  "diffEditor.ignoreTrimWhitespace": {
191
228
  "type": "boolean",
192
229
  "default": true,
193
230
  "description": core_1.nls.localizeByDefault("When enabled, the diff editor ignores changes in leading or trailing whitespace."),
194
- "scope": "language-overridable",
195
231
  "restricted": false
196
232
  },
197
233
  "diffEditor.renderIndicators": {
198
234
  "type": "boolean",
199
235
  "default": true,
200
236
  "description": core_1.nls.localizeByDefault("Controls whether the diff editor shows +/- indicators for added/removed changes."),
201
- "scope": "language-overridable",
202
237
  "restricted": false
203
238
  },
204
239
  "diffEditor.codeLens": {
205
240
  "type": "boolean",
206
241
  "default": false,
207
242
  "description": core_1.nls.localizeByDefault("Controls whether the editor shows CodeLens."),
208
- "scope": "language-overridable",
209
243
  "restricted": false
210
244
  },
211
245
  "diffEditor.wordWrap": {
@@ -219,30 +253,69 @@ exports.editorGeneratedPreferenceProperties = {
219
253
  "markdownEnumDescriptions": [
220
254
  core_1.nls.localizeByDefault("Lines will never wrap."),
221
255
  core_1.nls.localizeByDefault("Lines will wrap at the viewport width."),
222
- core_1.nls.localizeByDefault('Lines will wrap according to the {0} setting.', '`#editor.wordWrap#`')
256
+ core_1.nls.localize("theia/editor/diffEditor.wordWrap2", "Lines will wrap according to the `#editor.wordWrap#` setting.")
223
257
  ],
224
- "scope": "language-overridable",
225
258
  "restricted": false
226
259
  },
227
260
  "diffEditor.diffAlgorithm": {
228
261
  "type": "string",
229
262
  "enum": [
230
- "smart",
231
- "experimental"
263
+ "legacy",
264
+ "advanced"
232
265
  ],
233
- "default": "smart",
266
+ "default": "advanced",
234
267
  "markdownEnumDescriptions": [
235
268
  core_1.nls.localizeByDefault("Uses the legacy diffing algorithm."),
236
269
  core_1.nls.localizeByDefault("Uses the advanced diffing algorithm.")
237
270
  ],
238
- "scope": "language-overridable",
271
+ "tags": [
272
+ "experimental"
273
+ ],
274
+ "restricted": false
275
+ },
276
+ "diffEditor.hideUnchangedRegions.enabled": {
277
+ "type": "boolean",
278
+ "default": false,
279
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether the diff editor shows unchanged regions."),
280
+ "restricted": false
281
+ },
282
+ "diffEditor.hideUnchangedRegions.revealLineCount": {
283
+ "type": "integer",
284
+ "default": 20,
285
+ "markdownDescription": core_1.nls.localizeByDefault("Controls how many lines are used for unchanged regions."),
286
+ "minimum": 1,
287
+ "restricted": false
288
+ },
289
+ "diffEditor.hideUnchangedRegions.minimumLineCount": {
290
+ "type": "integer",
291
+ "default": 3,
292
+ "markdownDescription": core_1.nls.localizeByDefault("Controls how many lines are used as a minimum for unchanged regions."),
293
+ "minimum": 1,
294
+ "restricted": false
295
+ },
296
+ "diffEditor.hideUnchangedRegions.contextLineCount": {
297
+ "type": "integer",
298
+ "default": 3,
299
+ "markdownDescription": core_1.nls.localizeByDefault("Controls how many lines are used as context when comparing unchanged regions."),
300
+ "minimum": 1,
301
+ "restricted": false
302
+ },
303
+ "diffEditor.experimental.showMoves": {
304
+ "type": "boolean",
305
+ "default": false,
306
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether the diff editor should show detected code moves."),
307
+ "restricted": false
308
+ },
309
+ "diffEditor.experimental.showEmptyDecorations": {
310
+ "type": "boolean",
311
+ "default": true,
312
+ "description": core_1.nls.localizeByDefault("Controls whether the diff editor shows empty decorations to see where characters got inserted or deleted."),
239
313
  "restricted": false
240
314
  },
241
315
  "editor.acceptSuggestionOnCommitCharacter": {
242
- "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.'),
316
+ "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."),
243
317
  "type": "boolean",
244
318
  "default": true,
245
- "scope": "language-overridable",
246
319
  "restricted": false
247
320
  },
248
321
  "editor.acceptSuggestionOnEnter": {
@@ -259,7 +332,6 @@ exports.editorGeneratedPreferenceProperties = {
259
332
  "off"
260
333
  ],
261
334
  "default": "on",
262
- "scope": "language-overridable",
263
335
  "restricted": false
264
336
  },
265
337
  "editor.accessibilitySupport": {
@@ -270,22 +342,26 @@ exports.editorGeneratedPreferenceProperties = {
270
342
  "off"
271
343
  ],
272
344
  "enumDescriptions": [
273
- core_1.nls.localizeByDefault('Use platform APIs to detect when a Screen Reader is attached.'),
274
- core_1.nls.localizeByDefault("Optimize for usage with a Screen Reader."),
275
- core_1.nls.localizeByDefault("Assume a screen reader is not attached.")
345
+ core_1.nls.localize("theia/editor/editor.accessibilitySupport0", "Use platform APIs to detect when a Screen Reader is attached"),
346
+ core_1.nls.localize("theia/editor/editor.accessibilitySupport1", "Optimize for usage with a Screen Reader"),
347
+ core_1.nls.localize("theia/editor/editor.accessibilitySupport2", "Assume a screen reader is not attached")
276
348
  ],
277
349
  "default": "auto",
350
+ "tags": [
351
+ "accessibility"
352
+ ],
278
353
  "description": core_1.nls.localizeByDefault("Controls if the UI should run in a mode where it is optimized for screen readers."),
279
- "scope": "language-overridable",
280
354
  "restricted": false
281
355
  },
282
356
  "editor.accessibilityPageSize": {
283
357
  "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."),
358
+ "tags": [
359
+ "accessibility"
360
+ ],
284
361
  "type": "integer",
285
362
  "default": 10,
286
363
  "minimum": 1,
287
364
  "maximum": 1073741824,
288
- "scope": "language-overridable",
289
365
  "restricted": false
290
366
  },
291
367
  "editor.autoClosingBrackets": {
@@ -304,7 +380,33 @@ exports.editorGeneratedPreferenceProperties = {
304
380
  "never"
305
381
  ],
306
382
  "default": "languageDefined",
307
- "scope": "language-overridable",
383
+ "restricted": false
384
+ },
385
+ "editor.autoClosingComments": {
386
+ "enumDescriptions": [
387
+ "",
388
+ core_1.nls.localizeByDefault("Use language configurations to determine when to autoclose comments."),
389
+ core_1.nls.localizeByDefault("Autoclose comments only when the cursor is to the left of whitespace."),
390
+ ""
391
+ ],
392
+ "description": core_1.nls.localizeByDefault("Controls whether the editor should automatically close comments after the user adds an opening comment."),
393
+ "type": "string",
394
+ "enum": [
395
+ "always",
396
+ "languageDefined",
397
+ "beforeWhitespace",
398
+ "never"
399
+ ],
400
+ "default": "languageDefined",
401
+ "restricted": false
402
+ },
403
+ "editor.screenReaderAnnounceInlineSuggestion": {
404
+ "description": core_1.nls.localizeByDefault("Control whether inline suggestions are announced by a screen reader."),
405
+ "tags": [
406
+ "accessibility"
407
+ ],
408
+ "type": "boolean",
409
+ "default": true,
308
410
  "restricted": false
309
411
  },
310
412
  "editor.autoClosingDelete": {
@@ -321,7 +423,6 @@ exports.editorGeneratedPreferenceProperties = {
321
423
  "never"
322
424
  ],
323
425
  "default": "auto",
324
- "scope": "language-overridable",
325
426
  "restricted": false
326
427
  },
327
428
  "editor.autoClosingOvertype": {
@@ -338,7 +439,6 @@ exports.editorGeneratedPreferenceProperties = {
338
439
  "never"
339
440
  ],
340
441
  "default": "auto",
341
- "scope": "language-overridable",
342
442
  "restricted": false
343
443
  },
344
444
  "editor.autoClosingQuotes": {
@@ -357,7 +457,6 @@ exports.editorGeneratedPreferenceProperties = {
357
457
  "never"
358
458
  ],
359
459
  "default": "languageDefined",
360
- "scope": "language-overridable",
361
460
  "restricted": false
362
461
  },
363
462
  "editor.autoIndent": {
@@ -378,7 +477,6 @@ exports.editorGeneratedPreferenceProperties = {
378
477
  "full"
379
478
  ],
380
479
  "default": "full",
381
- "scope": "language-overridable",
382
480
  "restricted": false
383
481
  },
384
482
  "editor.autoSurround": {
@@ -397,21 +495,18 @@ exports.editorGeneratedPreferenceProperties = {
397
495
  "never"
398
496
  ],
399
497
  "default": "languageDefined",
400
- "scope": "language-overridable",
401
498
  "restricted": false
402
499
  },
403
500
  "editor.bracketPairColorization.enabled": {
404
501
  "type": "boolean",
405
502
  "default": true,
406
- "markdownDescription": core_1.nls.localizeByDefault('Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.', '`#workbench.colorCustomizations#`'),
407
- "scope": "language-overridable",
503
+ "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."),
408
504
  "restricted": false
409
505
  },
410
506
  "editor.bracketPairColorization.independentColorPoolPerBracketType": {
411
507
  "type": "boolean",
412
508
  "default": false,
413
509
  "description": core_1.nls.localizeByDefault("Controls whether each bracket type has its own independent color pool."),
414
- "scope": "language-overridable",
415
510
  "restricted": false
416
511
  },
417
512
  "editor.guides.bracketPairs": {
@@ -431,7 +526,6 @@ exports.editorGeneratedPreferenceProperties = {
431
526
  ],
432
527
  "default": false,
433
528
  "description": core_1.nls.localizeByDefault("Controls whether bracket pair guides are enabled or not."),
434
- "scope": "language-overridable",
435
529
  "restricted": false
436
530
  },
437
531
  "editor.guides.bracketPairsHorizontal": {
@@ -451,21 +545,18 @@ exports.editorGeneratedPreferenceProperties = {
451
545
  ],
452
546
  "default": "active",
453
547
  "description": core_1.nls.localizeByDefault("Controls whether horizontal bracket pair guides are enabled or not."),
454
- "scope": "language-overridable",
455
548
  "restricted": false
456
549
  },
457
550
  "editor.guides.highlightActiveBracketPair": {
458
551
  "type": "boolean",
459
552
  "default": true,
460
553
  "description": core_1.nls.localizeByDefault("Controls whether the editor should highlight the active bracket pair."),
461
- "scope": "language-overridable",
462
554
  "restricted": false
463
555
  },
464
556
  "editor.guides.indentation": {
465
557
  "type": "boolean",
466
558
  "default": true,
467
559
  "description": core_1.nls.localizeByDefault("Controls whether the editor should render indent guides."),
468
- "scope": "language-overridable",
469
560
  "restricted": false
470
561
  },
471
562
  "editor.guides.highlightActiveIndentation": {
@@ -485,21 +576,18 @@ exports.editorGeneratedPreferenceProperties = {
485
576
  ],
486
577
  "default": true,
487
578
  "description": core_1.nls.localizeByDefault("Controls whether the editor should highlight the active indent guide."),
488
- "scope": "language-overridable",
489
579
  "restricted": false
490
580
  },
491
581
  "editor.codeLens": {
492
582
  "description": core_1.nls.localizeByDefault("Controls whether the editor shows CodeLens."),
493
583
  "type": "boolean",
494
584
  "default": true,
495
- "scope": "language-overridable",
496
585
  "restricted": false
497
586
  },
498
587
  "editor.codeLensFontFamily": {
499
588
  "description": core_1.nls.localizeByDefault("Controls the font family for CodeLens."),
500
589
  "type": "string",
501
590
  "default": "",
502
- "scope": "language-overridable",
503
591
  "restricted": false
504
592
  },
505
593
  "editor.codeLensFontSize": {
@@ -507,43 +595,45 @@ exports.editorGeneratedPreferenceProperties = {
507
595
  "default": 0,
508
596
  "minimum": 0,
509
597
  "maximum": 100,
510
- "markdownDescription": core_1.nls.localizeByDefault('Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used.'),
511
- "scope": "language-overridable",
598
+ "markdownDescription": core_1.nls.localizeByDefault("Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."),
512
599
  "restricted": false
513
600
  },
514
601
  "editor.colorDecorators": {
515
602
  "description": core_1.nls.localizeByDefault("Controls whether the editor should render the inline color decorators and color picker."),
516
603
  "type": "boolean",
517
604
  "default": true,
518
- "scope": "language-overridable",
605
+ "restricted": false
606
+ },
607
+ "editor.colorDecoratorsLimit": {
608
+ "markdownDescription": core_1.nls.localizeByDefault("Controls the max number of color decorators that can be rendered in an editor at once."),
609
+ "type": "integer",
610
+ "default": 500,
611
+ "minimum": 1,
612
+ "maximum": 1000000,
519
613
  "restricted": false
520
614
  },
521
615
  "editor.columnSelection": {
522
616
  "description": core_1.nls.localizeByDefault("Enable that the selection with the mouse and keys is doing column selection."),
523
617
  "type": "boolean",
524
618
  "default": false,
525
- "scope": "language-overridable",
526
619
  "restricted": false
527
620
  },
528
621
  "editor.comments.insertSpace": {
529
622
  "type": "boolean",
530
623
  "default": true,
531
624
  "description": core_1.nls.localizeByDefault("Controls whether a space character is inserted when commenting."),
532
- "scope": "language-overridable",
533
625
  "restricted": false
534
626
  },
535
627
  "editor.comments.ignoreEmptyLines": {
536
628
  "type": "boolean",
537
629
  "default": true,
538
630
  "description": core_1.nls.localizeByDefault("Controls if empty lines should be ignored with toggle, add or remove actions for line comments."),
539
- "scope": "language-overridable",
540
631
  "restricted": false
541
632
  },
542
633
  "editor.copyWithSyntaxHighlighting": {
543
634
  "description": core_1.nls.localizeByDefault("Controls whether syntax highlighting should be copied into the clipboard."),
544
635
  "type": "boolean",
545
636
  "default": true,
546
- "scope": "language-overridable",
547
637
  "restricted": false
548
638
  },
549
639
  "editor.cursorBlinking": {
@@ -557,14 +647,22 @@ exports.editorGeneratedPreferenceProperties = {
557
647
  "solid"
558
648
  ],
559
649
  "default": "blink",
560
- "scope": "language-overridable",
561
650
  "restricted": false
562
651
  },
563
652
  "editor.cursorSmoothCaretAnimation": {
653
+ "enumDescriptions": [
654
+ core_1.nls.localizeByDefault("Smooth caret animation is disabled."),
655
+ core_1.nls.localizeByDefault("Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."),
656
+ core_1.nls.localizeByDefault("Smooth caret animation is always enabled.")
657
+ ],
564
658
  "description": core_1.nls.localizeByDefault("Controls whether the smooth caret animation should be enabled."),
565
- "type": "boolean",
566
- "default": false,
567
- "scope": "language-overridable",
659
+ "type": "string",
660
+ "enum": [
661
+ "off",
662
+ "explicit",
663
+ "on"
664
+ ],
665
+ "default": "off",
568
666
  "restricted": false
569
667
  },
570
668
  "editor.cursorStyle": {
@@ -579,16 +677,14 @@ exports.editorGeneratedPreferenceProperties = {
579
677
  "underline-thin"
580
678
  ],
581
679
  "default": "line",
582
- "scope": "language-overridable",
583
680
  "restricted": false
584
681
  },
585
682
  "editor.cursorSurroundingLines": {
586
- "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.'),
683
+ "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."),
587
684
  "type": "integer",
588
685
  "default": 0,
589
686
  "minimum": 0,
590
687
  "maximum": 1073741824,
591
- "scope": "language-overridable",
592
688
  "restricted": false
593
689
  },
594
690
  "editor.cursorSurroundingLinesStyle": {
@@ -596,14 +692,13 @@ exports.editorGeneratedPreferenceProperties = {
596
692
  core_1.nls.localizeByDefault("`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."),
597
693
  core_1.nls.localizeByDefault("`cursorSurroundingLines` is enforced always.")
598
694
  ],
599
- "description": core_1.nls.localizeByDefault("Controls when `#cursorSurroundingLines#` should be enforced."),
695
+ "markdownDescription": core_1.nls.localizeByDefault("Controls when `#cursorSurroundingLines#` should be enforced."),
600
696
  "type": "string",
601
697
  "enum": [
602
698
  "default",
603
699
  "all"
604
700
  ],
605
701
  "default": "default",
606
- "scope": "language-overridable",
607
702
  "restricted": false
608
703
  },
609
704
  "editor.cursorWidth": {
@@ -612,42 +707,66 @@ exports.editorGeneratedPreferenceProperties = {
612
707
  "default": 0,
613
708
  "minimum": 0,
614
709
  "maximum": 1073741824,
615
- "scope": "language-overridable",
616
710
  "restricted": false
617
711
  },
618
712
  "editor.dragAndDrop": {
619
713
  "description": core_1.nls.localizeByDefault("Controls whether the editor should allow moving selections via drag and drop."),
620
714
  "type": "boolean",
621
715
  "default": true,
622
- "scope": "language-overridable",
623
716
  "restricted": false
624
717
  },
625
718
  "editor.dropIntoEditor.enabled": {
626
719
  "type": "boolean",
627
720
  "default": true,
628
721
  "markdownDescription": core_1.nls.localizeByDefault("Controls whether you can drag and drop a file into a text editor by holding down `shift` (instead of opening the file in an editor)."),
629
- "scope": "language-overridable",
722
+ "restricted": false
723
+ },
724
+ "editor.dropIntoEditor.showDropSelector": {
725
+ "type": "string",
726
+ "markdownDescription": core_1.nls.localizeByDefault("Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."),
727
+ "enum": [
728
+ "afterDrop",
729
+ "never"
730
+ ],
731
+ "enumDescriptions": [
732
+ core_1.nls.localizeByDefault("Show the drop selector widget after a file is dropped into the editor."),
733
+ core_1.nls.localizeByDefault("Never show the drop selector widget. Instead the default drop provider is always used.")
734
+ ],
735
+ "default": "afterDrop",
630
736
  "restricted": false
631
737
  },
632
738
  "editor.emptySelectionClipboard": {
633
739
  "description": core_1.nls.localizeByDefault("Controls whether copying without a selection copies the current line."),
634
740
  "type": "boolean",
635
741
  "default": true,
636
- "scope": "language-overridable",
742
+ "restricted": false
743
+ },
744
+ "editor.experimentalWhitespaceRendering": {
745
+ "enumDescriptions": [
746
+ core_1.nls.localizeByDefault("Use a new rendering method with svgs."),
747
+ core_1.nls.localizeByDefault("Use a new rendering method with font characters."),
748
+ core_1.nls.localizeByDefault("Use the stable rendering method.")
749
+ ],
750
+ "description": core_1.nls.localizeByDefault("Controls whether whitespace is rendered with a new, experimental method."),
751
+ "type": "string",
752
+ "enum": [
753
+ "svg",
754
+ "font",
755
+ "off"
756
+ ],
757
+ "default": "svg",
637
758
  "restricted": false
638
759
  },
639
760
  "editor.fastScrollSensitivity": {
640
761
  "markdownDescription": core_1.nls.localizeByDefault("Scrolling speed multiplier when pressing `Alt`."),
641
762
  "type": "number",
642
763
  "default": 5,
643
- "scope": "language-overridable",
644
764
  "restricted": false
645
765
  },
646
766
  "editor.find.cursorMoveOnType": {
647
767
  "type": "boolean",
648
768
  "default": true,
649
769
  "description": core_1.nls.localizeByDefault("Controls whether the cursor should jump to find matches while typing."),
650
- "scope": "language-overridable",
651
770
  "restricted": false
652
771
  },
653
772
  "editor.find.seedSearchStringFromSelection": {
@@ -664,7 +783,6 @@ exports.editorGeneratedPreferenceProperties = {
664
783
  core_1.nls.localizeByDefault("Only seed search string from the editor selection.")
665
784
  ],
666
785
  "description": core_1.nls.localizeByDefault("Controls whether the search string in the Find Widget is seeded from the editor selection."),
667
- "scope": "language-overridable",
668
786
  "restricted": false
669
787
  },
670
788
  "editor.find.autoFindInSelection": {
@@ -676,33 +794,29 @@ exports.editorGeneratedPreferenceProperties = {
676
794
  ],
677
795
  "default": "never",
678
796
  "enumDescriptions": [
679
- core_1.nls.localizeByDefault('Never turn on Find in Selection automatically (default).'),
680
- core_1.nls.localizeByDefault('Always turn on Find in Selection automatically.'),
681
- core_1.nls.localizeByDefault('Turn on Find in Selection automatically when multiple lines of content are selected.'),
797
+ core_1.nls.localizeByDefault("Never turn on Find in Selection automatically (default)."),
798
+ core_1.nls.localizeByDefault("Always turn on Find in Selection automatically."),
799
+ core_1.nls.localizeByDefault("Turn on Find in Selection automatically when multiple lines of content are selected.")
682
800
  ],
683
- "description": core_1.nls.localizeByDefault('Controls the condition for turning on Find in Selection automatically.'),
684
- "scope": "language-overridable",
801
+ "description": core_1.nls.localizeByDefault("Controls the condition for turning on Find in Selection automatically."),
685
802
  "restricted": false
686
803
  },
687
804
  "editor.find.addExtraSpaceOnTop": {
688
805
  "type": "boolean",
689
806
  "default": true,
690
807
  "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."),
691
- "scope": "language-overridable",
692
808
  "restricted": false
693
809
  },
694
810
  "editor.find.loop": {
695
811
  "type": "boolean",
696
812
  "default": true,
697
813
  "description": core_1.nls.localizeByDefault("Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."),
698
- "scope": "language-overridable",
699
814
  "restricted": false
700
815
  },
701
816
  "editor.folding": {
702
817
  "description": core_1.nls.localizeByDefault("Controls whether the editor has code folding enabled."),
703
818
  "type": "boolean",
704
819
  "default": true,
705
- "scope": "language-overridable",
706
820
  "restricted": false
707
821
  },
708
822
  "editor.foldingStrategy": {
@@ -717,21 +831,18 @@ exports.editorGeneratedPreferenceProperties = {
717
831
  "indentation"
718
832
  ],
719
833
  "default": "auto",
720
- "scope": "language-overridable",
721
834
  "restricted": false
722
835
  },
723
836
  "editor.foldingHighlight": {
724
837
  "description": core_1.nls.localizeByDefault("Controls whether the editor should highlight folded ranges."),
725
838
  "type": "boolean",
726
839
  "default": true,
727
- "scope": "language-overridable",
728
840
  "restricted": false
729
841
  },
730
842
  "editor.foldingImportsByDefault": {
731
843
  "description": core_1.nls.localizeByDefault("Controls whether the editor automatically collapses import ranges."),
732
844
  "type": "boolean",
733
845
  "default": false,
734
- "scope": "language-overridable",
735
846
  "restricted": false
736
847
  },
737
848
  "editor.foldingMaximumRegions": {
@@ -740,21 +851,18 @@ exports.editorGeneratedPreferenceProperties = {
740
851
  "default": 5000,
741
852
  "minimum": 10,
742
853
  "maximum": 65000,
743
- "scope": "language-overridable",
744
854
  "restricted": false
745
855
  },
746
856
  "editor.unfoldOnClickAfterEndOfLine": {
747
857
  "description": core_1.nls.localizeByDefault("Controls whether clicking on the empty content after a folded line will unfold the line."),
748
858
  "type": "boolean",
749
859
  "default": false,
750
- "scope": "language-overridable",
751
860
  "restricted": false
752
861
  },
753
862
  "editor.fontFamily": {
754
863
  "description": core_1.nls.localizeByDefault("Controls the font family."),
755
864
  "type": "string",
756
865
  "default": core_1.isOSX ? 'Menlo, Monaco, \'Courier New\', monospace' : core_1.isWindows ? 'Consolas, \'Courier New\', monospace' : '\'Droid Sans Mono\', \'monospace\', monospace',
757
- "scope": "language-overridable",
758
866
  "restricted": false
759
867
  },
760
868
  "editor.fontLigatures": {
@@ -770,7 +878,6 @@ exports.editorGeneratedPreferenceProperties = {
770
878
  ],
771
879
  "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."),
772
880
  "default": false,
773
- "scope": "language-overridable",
774
881
  "restricted": false
775
882
  },
776
883
  "editor.fontSize": {
@@ -779,7 +886,6 @@ exports.editorGeneratedPreferenceProperties = {
779
886
  "maximum": 100,
780
887
  "default": core_1.isOSX ? 12 : 14,
781
888
  "description": core_1.nls.localizeByDefault("Controls the font size in pixels."),
782
- "scope": "language-overridable",
783
889
  "restricted": false
784
890
  },
785
891
  "editor.fontWeight": {
@@ -812,34 +918,44 @@ exports.editorGeneratedPreferenceProperties = {
812
918
  ],
813
919
  "default": "normal",
814
920
  "description": core_1.nls.localizeByDefault("Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."),
815
- "scope": "language-overridable",
921
+ "restricted": false
922
+ },
923
+ "editor.fontVariations": {
924
+ "anyOf": [
925
+ {
926
+ "type": "boolean",
927
+ "description": core_1.nls.localizeByDefault("Enables/Disables the translation from font-weight to font-variation-settings. Change this to a string for fine-grained control of the 'font-variation-settings' CSS property.")
928
+ },
929
+ {
930
+ "type": "string",
931
+ "description": core_1.nls.localizeByDefault("Explicit 'font-variation-settings' CSS property. A boolean can be passed instead if one only needs to translate font-weight to font-variation-settings.")
932
+ }
933
+ ],
934
+ "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."),
935
+ "default": false,
816
936
  "restricted": false
817
937
  },
818
938
  "editor.formatOnPaste": {
819
939
  "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."),
820
940
  "type": "boolean",
821
941
  "default": false,
822
- "scope": "language-overridable",
823
942
  "restricted": false
824
943
  },
825
944
  "editor.formatOnType": {
826
945
  "description": core_1.nls.localizeByDefault("Controls whether the editor should automatically format the line after typing."),
827
946
  "type": "boolean",
828
947
  "default": false,
829
- "scope": "language-overridable",
830
948
  "restricted": false
831
949
  },
832
950
  "editor.glyphMargin": {
833
951
  "description": core_1.nls.localizeByDefault("Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."),
834
952
  "type": "boolean",
835
953
  "default": true,
836
- "scope": "language-overridable",
837
954
  "restricted": false
838
955
  },
839
956
  "editor.gotoLocation.multiple": {
840
957
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.",
841
958
  "default": null,
842
- "scope": "language-overridable",
843
959
  "restricted": false
844
960
  },
845
961
  "editor.gotoLocation.multipleDefinitions": {
@@ -854,9 +970,8 @@ exports.editorGeneratedPreferenceProperties = {
854
970
  "enumDescriptions": [
855
971
  core_1.nls.localizeByDefault("Show Peek view of the results (default)"),
856
972
  core_1.nls.localizeByDefault("Go to the primary result and show a Peek view"),
857
- core_1.nls.localizeByDefault('Go to the primary result and enable Peek-less navigation to others')
973
+ core_1.nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
858
974
  ],
859
- "scope": "language-overridable",
860
975
  "restricted": false
861
976
  },
862
977
  "editor.gotoLocation.multipleTypeDefinitions": {
@@ -871,9 +986,8 @@ exports.editorGeneratedPreferenceProperties = {
871
986
  "enumDescriptions": [
872
987
  core_1.nls.localizeByDefault("Show Peek view of the results (default)"),
873
988
  core_1.nls.localizeByDefault("Go to the primary result and show a Peek view"),
874
- core_1.nls.localizeByDefault('Go to the primary result and enable Peek-less navigation to others')
989
+ core_1.nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
875
990
  ],
876
- "scope": "language-overridable",
877
991
  "restricted": false
878
992
  },
879
993
  "editor.gotoLocation.multipleDeclarations": {
@@ -888,9 +1002,8 @@ exports.editorGeneratedPreferenceProperties = {
888
1002
  "enumDescriptions": [
889
1003
  core_1.nls.localizeByDefault("Show Peek view of the results (default)"),
890
1004
  core_1.nls.localizeByDefault("Go to the primary result and show a Peek view"),
891
- core_1.nls.localizeByDefault('Go to the primary result and enable Peek-less navigation to others')
1005
+ core_1.nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
892
1006
  ],
893
- "scope": "language-overridable",
894
1007
  "restricted": false
895
1008
  },
896
1009
  "editor.gotoLocation.multipleImplementations": {
@@ -905,9 +1018,8 @@ exports.editorGeneratedPreferenceProperties = {
905
1018
  "enumDescriptions": [
906
1019
  core_1.nls.localizeByDefault("Show Peek view of the results (default)"),
907
1020
  core_1.nls.localizeByDefault("Go to the primary result and show a Peek view"),
908
- core_1.nls.localizeByDefault('Go to the primary result and enable Peek-less navigation to others')
1021
+ core_1.nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
909
1022
  ],
910
- "scope": "language-overridable",
911
1023
  "restricted": false
912
1024
  },
913
1025
  "editor.gotoLocation.multipleReferences": {
@@ -922,9 +1034,8 @@ exports.editorGeneratedPreferenceProperties = {
922
1034
  "enumDescriptions": [
923
1035
  core_1.nls.localizeByDefault("Show Peek view of the results (default)"),
924
1036
  core_1.nls.localizeByDefault("Go to the primary result and show a Peek view"),
925
- core_1.nls.localizeByDefault('Go to the primary result and enable Peek-less navigation to others')
1037
+ core_1.nls.localizeByDefault("Go to the primary result and enable Peek-less navigation to others")
926
1038
  ],
927
- "scope": "language-overridable",
928
1039
  "restricted": false
929
1040
  },
930
1041
  "editor.gotoLocation.alternativeDefinitionCommand": {
@@ -945,7 +1056,6 @@ exports.editorGeneratedPreferenceProperties = {
945
1056
  "editor.action.revealDefinition"
946
1057
  ],
947
1058
  "description": core_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Definition' is the current location."),
948
- "scope": "language-overridable",
949
1059
  "restricted": false
950
1060
  },
951
1061
  "editor.gotoLocation.alternativeTypeDefinitionCommand": {
@@ -966,7 +1076,6 @@ exports.editorGeneratedPreferenceProperties = {
966
1076
  "editor.action.revealDefinition"
967
1077
  ],
968
1078
  "description": core_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."),
969
- "scope": "language-overridable",
970
1079
  "restricted": false
971
1080
  },
972
1081
  "editor.gotoLocation.alternativeDeclarationCommand": {
@@ -987,7 +1096,6 @@ exports.editorGeneratedPreferenceProperties = {
987
1096
  "editor.action.revealDefinition"
988
1097
  ],
989
1098
  "description": core_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."),
990
- "scope": "language-overridable",
991
1099
  "restricted": false
992
1100
  },
993
1101
  "editor.gotoLocation.alternativeImplementationCommand": {
@@ -1008,7 +1116,6 @@ exports.editorGeneratedPreferenceProperties = {
1008
1116
  "editor.action.revealDefinition"
1009
1117
  ],
1010
1118
  "description": core_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."),
1011
- "scope": "language-overridable",
1012
1119
  "restricted": false
1013
1120
  },
1014
1121
  "editor.gotoLocation.alternativeReferenceCommand": {
@@ -1029,21 +1136,18 @@ exports.editorGeneratedPreferenceProperties = {
1029
1136
  "editor.action.revealDefinition"
1030
1137
  ],
1031
1138
  "description": core_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Reference' is the current location."),
1032
- "scope": "language-overridable",
1033
1139
  "restricted": false
1034
1140
  },
1035
1141
  "editor.hideCursorInOverviewRuler": {
1036
1142
  "description": core_1.nls.localizeByDefault("Controls whether the cursor should be hidden in the overview ruler."),
1037
1143
  "type": "boolean",
1038
1144
  "default": false,
1039
- "scope": "language-overridable",
1040
1145
  "restricted": false
1041
1146
  },
1042
1147
  "editor.hover.enabled": {
1043
1148
  "type": "boolean",
1044
1149
  "default": true,
1045
1150
  "description": core_1.nls.localizeByDefault("Controls whether the hover is shown."),
1046
- "scope": "language-overridable",
1047
1151
  "restricted": false
1048
1152
  },
1049
1153
  "editor.hover.delay": {
@@ -1052,49 +1156,69 @@ exports.editorGeneratedPreferenceProperties = {
1052
1156
  "minimum": 0,
1053
1157
  "maximum": 10000,
1054
1158
  "description": core_1.nls.localizeByDefault("Controls the delay in milliseconds after which the hover is shown."),
1055
- "scope": "language-overridable",
1056
1159
  "restricted": false
1057
1160
  },
1058
1161
  "editor.hover.sticky": {
1059
1162
  "type": "boolean",
1060
1163
  "default": true,
1061
1164
  "description": core_1.nls.localizeByDefault("Controls whether the hover should remain visible when mouse is moved over it."),
1062
- "scope": "language-overridable",
1165
+ "restricted": false
1166
+ },
1167
+ "editor.hover.hidingDelay": {
1168
+ "type": "integer",
1169
+ "minimum": 0,
1170
+ "default": 300,
1171
+ "description": core_1.nls.localize("theia/editor/editor.hover.hidingDelay", "Controls the delay in milliseconds after thich the hover is hidden. Requires `editor.hover.sticky` to be enabled."),
1063
1172
  "restricted": false
1064
1173
  },
1065
1174
  "editor.hover.above": {
1066
1175
  "type": "boolean",
1067
1176
  "default": true,
1068
1177
  "description": core_1.nls.localizeByDefault("Prefer showing hovers above the line, if there's space."),
1069
- "scope": "language-overridable",
1070
1178
  "restricted": false
1071
1179
  },
1072
1180
  "editor.inlineSuggest.enabled": {
1073
1181
  "type": "boolean",
1074
1182
  "default": true,
1075
1183
  "description": core_1.nls.localizeByDefault("Controls whether to automatically show inline suggestions in the editor."),
1076
- "scope": "language-overridable",
1184
+ "restricted": false
1185
+ },
1186
+ "editor.inlineSuggest.showToolbar": {
1187
+ "type": "string",
1188
+ "default": "onHover",
1189
+ "enum": [
1190
+ "always",
1191
+ "onHover"
1192
+ ],
1193
+ "enumDescriptions": [
1194
+ core_1.nls.localizeByDefault("Show the inline suggestion toolbar whenever an inline suggestion is shown."),
1195
+ core_1.nls.localizeByDefault("Show the inline suggestion toolbar when hovering over an inline suggestion.")
1196
+ ],
1197
+ "description": core_1.nls.localizeByDefault("Controls when to show the inline suggestion toolbar."),
1198
+ "restricted": false
1199
+ },
1200
+ "editor.inlineSuggest.suppressSuggestions": {
1201
+ "type": "boolean",
1202
+ "default": false,
1203
+ "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."),
1077
1204
  "restricted": false
1078
1205
  },
1079
1206
  "editor.letterSpacing": {
1080
1207
  "description": core_1.nls.localizeByDefault("Controls the letter spacing in pixels."),
1081
1208
  "type": "number",
1082
1209
  "default": 0,
1083
- "scope": "language-overridable",
1084
1210
  "restricted": false
1085
1211
  },
1086
1212
  "editor.lightbulb.enabled": {
1087
1213
  "type": "boolean",
1088
1214
  "default": true,
1089
- "description": core_1.nls.localizeByDefault('Enables the Code Action lightbulb in the editor.'),
1090
- "scope": "language-overridable",
1215
+ "description": core_1.nls.localizeByDefault("Enables the Code Action lightbulb in the editor."),
1091
1216
  "restricted": false
1092
1217
  },
1093
1218
  "editor.lineHeight": {
1094
1219
  "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."),
1095
1220
  "type": "number",
1096
1221
  "default": 0,
1097
- "scope": "language-overridable",
1098
1222
  "restricted": false
1099
1223
  },
1100
1224
  "editor.lineNumbers": {
@@ -1113,21 +1237,18 @@ exports.editorGeneratedPreferenceProperties = {
1113
1237
  ],
1114
1238
  "default": "on",
1115
1239
  "description": core_1.nls.localizeByDefault("Controls the display of line numbers."),
1116
- "scope": "language-overridable",
1117
1240
  "restricted": false
1118
1241
  },
1119
1242
  "editor.linkedEditing": {
1120
- "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.'),
1243
+ "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."),
1121
1244
  "type": "boolean",
1122
1245
  "default": false,
1123
- "scope": "language-overridable",
1124
1246
  "restricted": false
1125
1247
  },
1126
1248
  "editor.links": {
1127
1249
  "description": core_1.nls.localizeByDefault("Controls whether the editor should detect links and make them clickable."),
1128
1250
  "type": "boolean",
1129
1251
  "default": true,
1130
- "scope": "language-overridable",
1131
1252
  "restricted": false
1132
1253
  },
1133
1254
  "editor.matchBrackets": {
@@ -1139,21 +1260,18 @@ exports.editorGeneratedPreferenceProperties = {
1139
1260
  "never"
1140
1261
  ],
1141
1262
  "default": "always",
1142
- "scope": "language-overridable",
1143
1263
  "restricted": false
1144
1264
  },
1145
1265
  "editor.minimap.enabled": {
1146
1266
  "type": "boolean",
1147
1267
  "default": true,
1148
1268
  "description": core_1.nls.localizeByDefault("Controls whether the minimap is shown."),
1149
- "scope": "language-overridable",
1150
1269
  "restricted": false
1151
1270
  },
1152
1271
  "editor.minimap.autohide": {
1153
1272
  "type": "boolean",
1154
1273
  "default": false,
1155
1274
  "description": core_1.nls.localizeByDefault("Controls whether the minimap is hidden automatically."),
1156
- "scope": "language-overridable",
1157
1275
  "restricted": false
1158
1276
  },
1159
1277
  "editor.minimap.size": {
@@ -1170,7 +1288,6 @@ exports.editorGeneratedPreferenceProperties = {
1170
1288
  ],
1171
1289
  "default": "proportional",
1172
1290
  "description": core_1.nls.localizeByDefault("Controls the size of the minimap."),
1173
- "scope": "language-overridable",
1174
1291
  "restricted": false
1175
1292
  },
1176
1293
  "editor.minimap.side": {
@@ -1181,7 +1298,6 @@ exports.editorGeneratedPreferenceProperties = {
1181
1298
  ],
1182
1299
  "default": "right",
1183
1300
  "description": core_1.nls.localizeByDefault("Controls the side where to render the minimap."),
1184
- "scope": "language-overridable",
1185
1301
  "restricted": false
1186
1302
  },
1187
1303
  "editor.minimap.showSlider": {
@@ -1192,7 +1308,6 @@ exports.editorGeneratedPreferenceProperties = {
1192
1308
  ],
1193
1309
  "default": "mouseover",
1194
1310
  "description": core_1.nls.localizeByDefault("Controls when the minimap slider is shown."),
1195
- "scope": "language-overridable",
1196
1311
  "restricted": false
1197
1312
  },
1198
1313
  "editor.minimap.scale": {
@@ -1206,42 +1321,36 @@ exports.editorGeneratedPreferenceProperties = {
1206
1321
  3
1207
1322
  ],
1208
1323
  "description": core_1.nls.localizeByDefault("Scale of content drawn in the minimap: 1, 2 or 3."),
1209
- "scope": "language-overridable",
1210
1324
  "restricted": false
1211
1325
  },
1212
1326
  "editor.minimap.renderCharacters": {
1213
1327
  "type": "boolean",
1214
1328
  "default": true,
1215
1329
  "description": core_1.nls.localizeByDefault("Render the actual characters on a line as opposed to color blocks."),
1216
- "scope": "language-overridable",
1217
1330
  "restricted": false
1218
1331
  },
1219
1332
  "editor.minimap.maxColumn": {
1220
1333
  "type": "number",
1221
1334
  "default": 120,
1222
1335
  "description": core_1.nls.localizeByDefault("Limit the width of the minimap to render at most a certain number of columns."),
1223
- "scope": "language-overridable",
1224
1336
  "restricted": false
1225
1337
  },
1226
1338
  "editor.mouseWheelScrollSensitivity": {
1227
1339
  "markdownDescription": core_1.nls.localizeByDefault("A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."),
1228
1340
  "type": "number",
1229
1341
  "default": 1,
1230
- "scope": "language-overridable",
1231
1342
  "restricted": false
1232
1343
  },
1233
1344
  "editor.mouseWheelZoom": {
1234
1345
  "markdownDescription": core_1.nls.localizeByDefault("Zoom the font of the editor when using mouse wheel and holding `Ctrl`."),
1235
1346
  "type": "boolean",
1236
1347
  "default": false,
1237
- "scope": "language-overridable",
1238
1348
  "restricted": false
1239
1349
  },
1240
1350
  "editor.multiCursorMergeOverlapping": {
1241
1351
  "description": core_1.nls.localizeByDefault("Merge multiple cursors when they are overlapping."),
1242
1352
  "type": "boolean",
1243
1353
  "default": true,
1244
- "scope": "language-overridable",
1245
1354
  "restricted": false
1246
1355
  },
1247
1356
  "editor.multiCursorModifier": {
@@ -1256,7 +1365,6 @@ exports.editorGeneratedPreferenceProperties = {
1256
1365
  "alt"
1257
1366
  ],
1258
1367
  "default": "alt",
1259
- "scope": "language-overridable",
1260
1368
  "restricted": false
1261
1369
  },
1262
1370
  "editor.multiCursorPaste": {
@@ -1271,21 +1379,26 @@ exports.editorGeneratedPreferenceProperties = {
1271
1379
  "full"
1272
1380
  ],
1273
1381
  "default": "spread",
1274
- "scope": "language-overridable",
1382
+ "restricted": false
1383
+ },
1384
+ "editor.multiCursorLimit": {
1385
+ "markdownDescription": core_1.nls.localizeByDefault("Controls the max number of cursors that can be in an active editor at once."),
1386
+ "type": "integer",
1387
+ "default": 10000,
1388
+ "minimum": 1,
1389
+ "maximum": 100000,
1275
1390
  "restricted": false
1276
1391
  },
1277
1392
  "editor.occurrencesHighlight": {
1278
1393
  "description": core_1.nls.localizeByDefault("Controls whether the editor should highlight semantic symbol occurrences."),
1279
1394
  "type": "boolean",
1280
1395
  "default": true,
1281
- "scope": "language-overridable",
1282
1396
  "restricted": false
1283
1397
  },
1284
1398
  "editor.overviewRulerBorder": {
1285
1399
  "description": core_1.nls.localizeByDefault("Controls whether a border should be drawn around the overview ruler."),
1286
1400
  "type": "boolean",
1287
1401
  "default": true,
1288
- "scope": "language-overridable",
1289
1402
  "restricted": false
1290
1403
  },
1291
1404
  "editor.padding.top": {
@@ -1294,7 +1407,6 @@ exports.editorGeneratedPreferenceProperties = {
1294
1407
  "minimum": 0,
1295
1408
  "maximum": 1000,
1296
1409
  "description": core_1.nls.localizeByDefault("Controls the amount of space between the top edge of the editor and the first line."),
1297
- "scope": "language-overridable",
1298
1410
  "restricted": false
1299
1411
  },
1300
1412
  "editor.padding.bottom": {
@@ -1303,21 +1415,38 @@ exports.editorGeneratedPreferenceProperties = {
1303
1415
  "minimum": 0,
1304
1416
  "maximum": 1000,
1305
1417
  "description": core_1.nls.localizeByDefault("Controls the amount of space between the bottom edge of the editor and the last line."),
1306
- "scope": "language-overridable",
1418
+ "restricted": false
1419
+ },
1420
+ "editor.pasteAs.enabled": {
1421
+ "type": "boolean",
1422
+ "default": true,
1423
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether you can paste content in different ways."),
1424
+ "restricted": false
1425
+ },
1426
+ "editor.pasteAs.showPasteSelector": {
1427
+ "type": "string",
1428
+ "markdownDescription": core_1.nls.localizeByDefault("Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."),
1429
+ "enum": [
1430
+ "afterPaste",
1431
+ "never"
1432
+ ],
1433
+ "enumDescriptions": [
1434
+ core_1.nls.localizeByDefault("Show the paste selector widget after content is pasted into the editor."),
1435
+ core_1.nls.localizeByDefault("Never show the paste selector widget. Instead the default pasting behavior is always used.")
1436
+ ],
1437
+ "default": "afterPaste",
1307
1438
  "restricted": false
1308
1439
  },
1309
1440
  "editor.parameterHints.enabled": {
1310
1441
  "type": "boolean",
1311
1442
  "default": true,
1312
1443
  "description": core_1.nls.localizeByDefault("Enables a pop-up that shows parameter documentation and type information as you type."),
1313
- "scope": "language-overridable",
1314
1444
  "restricted": false
1315
1445
  },
1316
1446
  "editor.parameterHints.cycle": {
1317
1447
  "type": "boolean",
1318
- "default": false,
1448
+ "default": true,
1319
1449
  "description": core_1.nls.localizeByDefault("Controls whether the parameter hints menu cycles or closes when reaching the end of the list."),
1320
- "scope": "language-overridable",
1321
1450
  "restricted": false
1322
1451
  },
1323
1452
  "editor.peekWidgetDefaultFocus": {
@@ -1332,14 +1461,12 @@ exports.editorGeneratedPreferenceProperties = {
1332
1461
  "editor"
1333
1462
  ],
1334
1463
  "default": "tree",
1335
- "scope": "language-overridable",
1336
1464
  "restricted": false
1337
1465
  },
1338
1466
  "editor.definitionLinkOpensInPeek": {
1339
1467
  "description": core_1.nls.localizeByDefault("Controls whether the Go to Definition mouse gesture always opens the peek widget."),
1340
1468
  "type": "boolean",
1341
1469
  "default": false,
1342
- "scope": "language-overridable",
1343
1470
  "restricted": false
1344
1471
  },
1345
1472
  "editor.quickSuggestions": {
@@ -1419,7 +1546,6 @@ exports.editorGeneratedPreferenceProperties = {
1419
1546
  "strings": "off"
1420
1547
  },
1421
1548
  "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."),
1422
- "scope": "language-overridable",
1423
1549
  "restricted": false
1424
1550
  },
1425
1551
  "editor.quickSuggestionsDelay": {
@@ -1428,7 +1554,6 @@ exports.editorGeneratedPreferenceProperties = {
1428
1554
  "default": 10,
1429
1555
  "minimum": 0,
1430
1556
  "maximum": 1073741824,
1431
- "scope": "language-overridable",
1432
1557
  "restricted": false
1433
1558
  },
1434
1559
  "editor.renameOnType": {
@@ -1436,7 +1561,6 @@ exports.editorGeneratedPreferenceProperties = {
1436
1561
  "markdownDeprecationMessage": "Deprecated, use `editor.linkedEditing` instead.",
1437
1562
  "type": "boolean",
1438
1563
  "default": false,
1439
- "scope": "language-overridable",
1440
1564
  "restricted": false,
1441
1565
  "deprecationMessage": "Deprecated, use `editor.linkedEditing` instead."
1442
1566
  },
@@ -1444,14 +1568,17 @@ exports.editorGeneratedPreferenceProperties = {
1444
1568
  "description": core_1.nls.localizeByDefault("Controls whether the editor should render control characters."),
1445
1569
  "restricted": true,
1446
1570
  "type": "boolean",
1447
- "default": true,
1448
- "scope": "language-overridable"
1571
+ "default": true
1449
1572
  },
1450
1573
  "editor.renderFinalNewline": {
1451
1574
  "description": core_1.nls.localizeByDefault("Render last line number when the file ends with a newline."),
1452
- "type": "boolean",
1453
- "default": true,
1454
- "scope": "language-overridable",
1575
+ "type": "string",
1576
+ "enum": [
1577
+ "off",
1578
+ "on",
1579
+ "dimmed"
1580
+ ],
1581
+ "default": "on",
1455
1582
  "restricted": false
1456
1583
  },
1457
1584
  "editor.renderLineHighlight": {
@@ -1470,14 +1597,12 @@ exports.editorGeneratedPreferenceProperties = {
1470
1597
  "all"
1471
1598
  ],
1472
1599
  "default": "line",
1473
- "scope": "language-overridable",
1474
1600
  "restricted": false
1475
1601
  },
1476
1602
  "editor.renderLineHighlightOnlyWhenFocus": {
1477
1603
  "description": core_1.nls.localizeByDefault("Controls if the editor should render the current line highlight only when the editor is focused."),
1478
1604
  "type": "boolean",
1479
1605
  "default": false,
1480
- "scope": "language-overridable",
1481
1606
  "restricted": false
1482
1607
  },
1483
1608
  "editor.renderWhitespace": {
@@ -1498,14 +1623,12 @@ exports.editorGeneratedPreferenceProperties = {
1498
1623
  "all"
1499
1624
  ],
1500
1625
  "default": "selection",
1501
- "scope": "language-overridable",
1502
1626
  "restricted": false
1503
1627
  },
1504
1628
  "editor.roundedSelection": {
1505
1629
  "description": core_1.nls.localizeByDefault("Controls whether selections should have rounded corners."),
1506
1630
  "type": "boolean",
1507
1631
  "default": true,
1508
- "scope": "language-overridable",
1509
1632
  "restricted": false
1510
1633
  },
1511
1634
  "editor.rulers": {
@@ -1536,7 +1659,6 @@ exports.editorGeneratedPreferenceProperties = {
1536
1659
  },
1537
1660
  "default": [],
1538
1661
  "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."),
1539
- "scope": "language-overridable",
1540
1662
  "restricted": false
1541
1663
  },
1542
1664
  "editor.scrollbar.vertical": {
@@ -1553,7 +1675,6 @@ exports.editorGeneratedPreferenceProperties = {
1553
1675
  ],
1554
1676
  "default": "auto",
1555
1677
  "description": core_1.nls.localizeByDefault("Controls the visibility of the vertical scrollbar."),
1556
- "scope": "language-overridable",
1557
1678
  "restricted": false
1558
1679
  },
1559
1680
  "editor.scrollbar.horizontal": {
@@ -1570,28 +1691,24 @@ exports.editorGeneratedPreferenceProperties = {
1570
1691
  ],
1571
1692
  "default": "auto",
1572
1693
  "description": core_1.nls.localizeByDefault("Controls the visibility of the horizontal scrollbar."),
1573
- "scope": "language-overridable",
1574
1694
  "restricted": false
1575
1695
  },
1576
1696
  "editor.scrollbar.verticalScrollbarSize": {
1577
1697
  "type": "number",
1578
1698
  "default": 14,
1579
1699
  "description": core_1.nls.localizeByDefault("The width of the vertical scrollbar."),
1580
- "scope": "language-overridable",
1581
1700
  "restricted": false
1582
1701
  },
1583
1702
  "editor.scrollbar.horizontalScrollbarSize": {
1584
1703
  "type": "number",
1585
1704
  "default": 12,
1586
1705
  "description": core_1.nls.localizeByDefault("The height of the horizontal scrollbar."),
1587
- "scope": "language-overridable",
1588
1706
  "restricted": false
1589
1707
  },
1590
1708
  "editor.scrollbar.scrollByPage": {
1591
1709
  "type": "boolean",
1592
1710
  "default": false,
1593
1711
  "description": core_1.nls.localizeByDefault("Controls whether clicks scroll by page or jump to click position."),
1594
- "scope": "language-overridable",
1595
1712
  "restricted": false
1596
1713
  },
1597
1714
  "editor.scrollBeyondLastColumn": {
@@ -1600,34 +1717,24 @@ exports.editorGeneratedPreferenceProperties = {
1600
1717
  "default": 4,
1601
1718
  "minimum": 0,
1602
1719
  "maximum": 1073741824,
1603
- "scope": "language-overridable",
1604
1720
  "restricted": false
1605
1721
  },
1606
1722
  "editor.scrollBeyondLastLine": {
1607
1723
  "description": core_1.nls.localizeByDefault("Controls whether the editor will scroll beyond the last line."),
1608
1724
  "type": "boolean",
1609
1725
  "default": true,
1610
- "scope": "language-overridable",
1611
1726
  "restricted": false
1612
1727
  },
1613
1728
  "editor.scrollPredominantAxis": {
1614
1729
  "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."),
1615
1730
  "type": "boolean",
1616
1731
  "default": true,
1617
- "scope": "language-overridable",
1618
1732
  "restricted": false
1619
1733
  },
1620
- "editor.selectionClipboard": {
1621
- "type": "boolean",
1622
- "default": true,
1623
- "description": core_1.nls.localizeByDefault("Controls whether the Linux primary clipboard should be supported."),
1624
- "included": !core_1.isOSX && !core_1.isWindows
1625
- },
1626
1734
  "editor.selectionHighlight": {
1627
1735
  "description": core_1.nls.localizeByDefault("Controls whether the editor should highlight matches similar to the selection."),
1628
1736
  "type": "boolean",
1629
1737
  "default": true,
1630
- "scope": "language-overridable",
1631
1738
  "restricted": false
1632
1739
  },
1633
1740
  "editor.showFoldingControls": {
@@ -1644,14 +1751,12 @@ exports.editorGeneratedPreferenceProperties = {
1644
1751
  "mouseover"
1645
1752
  ],
1646
1753
  "default": "mouseover",
1647
- "scope": "language-overridable",
1648
1754
  "restricted": false
1649
1755
  },
1650
1756
  "editor.showUnused": {
1651
1757
  "description": core_1.nls.localizeByDefault("Controls fading out of unused code."),
1652
1758
  "type": "boolean",
1653
1759
  "default": true,
1654
- "scope": "language-overridable",
1655
1760
  "restricted": false
1656
1761
  },
1657
1762
  "editor.snippetSuggestions": {
@@ -1670,28 +1775,30 @@ exports.editorGeneratedPreferenceProperties = {
1670
1775
  "none"
1671
1776
  ],
1672
1777
  "default": "inline",
1673
- "scope": "language-overridable",
1674
1778
  "restricted": false
1675
1779
  },
1676
1780
  "editor.smartSelect.selectLeadingAndTrailingWhitespace": {
1677
1781
  "description": core_1.nls.localizeByDefault("Whether leading and trailing whitespace should always be selected."),
1678
1782
  "default": true,
1679
1783
  "type": "boolean",
1680
- "scope": "language-overridable",
1784
+ "restricted": false
1785
+ },
1786
+ "editor.smartSelect.selectSubwords": {
1787
+ "description": core_1.nls.localizeByDefault("Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."),
1788
+ "default": true,
1789
+ "type": "boolean",
1681
1790
  "restricted": false
1682
1791
  },
1683
1792
  "editor.smoothScrolling": {
1684
1793
  "description": core_1.nls.localizeByDefault("Controls whether the editor will scroll using an animation."),
1685
1794
  "type": "boolean",
1686
1795
  "default": false,
1687
- "scope": "language-overridable",
1688
1796
  "restricted": false
1689
1797
  },
1690
1798
  "editor.stickyScroll.enabled": {
1691
1799
  "type": "boolean",
1692
1800
  "default": false,
1693
1801
  "description": core_1.nls.localizeByDefault("Shows the nested current scopes during the scroll at the top of the editor."),
1694
- "scope": "language-overridable",
1695
1802
  "restricted": false
1696
1803
  },
1697
1804
  "editor.stickyScroll.maxLineCount": {
@@ -1700,14 +1807,29 @@ exports.editorGeneratedPreferenceProperties = {
1700
1807
  "minimum": 1,
1701
1808
  "maximum": 10,
1702
1809
  "description": core_1.nls.localizeByDefault("Defines the maximum number of sticky lines to show."),
1703
- "scope": "language-overridable",
1810
+ "restricted": false
1811
+ },
1812
+ "editor.stickyScroll.defaultModel": {
1813
+ "type": "string",
1814
+ "enum": [
1815
+ "outlineModel",
1816
+ "foldingProviderModel",
1817
+ "indentationModel"
1818
+ ],
1819
+ "default": "outlineModel",
1820
+ "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."),
1821
+ "restricted": false
1822
+ },
1823
+ "editor.stickyScroll.scrollWithEditor": {
1824
+ "type": "boolean",
1825
+ "default": true,
1826
+ "description": core_1.nls.localize("theia/editor/editor.stickyScroll.scrollWithEditor", "Enable scrolling of the sticky scroll widget with the editor's horizontal scrollbar."),
1704
1827
  "restricted": false
1705
1828
  },
1706
1829
  "editor.stickyTabStops": {
1707
1830
  "description": core_1.nls.localizeByDefault("Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."),
1708
1831
  "type": "boolean",
1709
1832
  "default": false,
1710
- "scope": "language-overridable",
1711
1833
  "restricted": false
1712
1834
  },
1713
1835
  "editor.suggest.insertMode": {
@@ -1722,312 +1844,286 @@ exports.editorGeneratedPreferenceProperties = {
1722
1844
  ],
1723
1845
  "default": "insert",
1724
1846
  "description": core_1.nls.localizeByDefault("Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."),
1725
- "scope": "language-overridable",
1726
1847
  "restricted": false
1727
1848
  },
1728
1849
  "editor.suggest.filterGraceful": {
1729
1850
  "type": "boolean",
1730
1851
  "default": true,
1731
1852
  "description": core_1.nls.localizeByDefault("Controls whether filtering and sorting suggestions accounts for small typos."),
1732
- "scope": "language-overridable",
1733
1853
  "restricted": false
1734
1854
  },
1735
1855
  "editor.suggest.localityBonus": {
1736
1856
  "type": "boolean",
1737
1857
  "default": false,
1738
1858
  "description": core_1.nls.localizeByDefault("Controls whether sorting favors words that appear close to the cursor."),
1739
- "scope": "language-overridable",
1740
1859
  "restricted": false
1741
1860
  },
1742
1861
  "editor.suggest.shareSuggestSelections": {
1743
1862
  "type": "boolean",
1744
1863
  "default": false,
1745
1864
  "markdownDescription": core_1.nls.localizeByDefault("Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."),
1746
- "scope": "language-overridable",
1865
+ "restricted": false
1866
+ },
1867
+ "editor.suggest.selectionMode": {
1868
+ "type": "string",
1869
+ "enum": [
1870
+ "always",
1871
+ "never",
1872
+ "whenTriggerCharacter",
1873
+ "whenQuickSuggestion"
1874
+ ],
1875
+ "enumDescriptions": [
1876
+ core_1.nls.localizeByDefault("Always select a suggestion when automatically triggering IntelliSense."),
1877
+ core_1.nls.localizeByDefault("Never select a suggestion when automatically triggering IntelliSense."),
1878
+ core_1.nls.localizeByDefault("Select a suggestion only when triggering IntelliSense from a trigger character."),
1879
+ core_1.nls.localizeByDefault("Select a suggestion only when triggering IntelliSense as you type.")
1880
+ ],
1881
+ "default": "always",
1882
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions (`#editor.quickSuggestions#` and `#editor.suggestOnTriggerCharacters#`) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`."),
1747
1883
  "restricted": false
1748
1884
  },
1749
1885
  "editor.suggest.snippetsPreventQuickSuggestions": {
1750
1886
  "type": "boolean",
1751
- "default": true,
1887
+ "default": false,
1752
1888
  "description": core_1.nls.localizeByDefault("Controls whether an active snippet prevents quick suggestions."),
1753
- "scope": "language-overridable",
1754
1889
  "restricted": false
1755
1890
  },
1756
1891
  "editor.suggest.showIcons": {
1757
1892
  "type": "boolean",
1758
1893
  "default": true,
1759
1894
  "description": core_1.nls.localizeByDefault("Controls whether to show or hide icons in suggestions."),
1760
- "scope": "language-overridable",
1761
1895
  "restricted": false
1762
1896
  },
1763
1897
  "editor.suggest.showStatusBar": {
1764
1898
  "type": "boolean",
1765
1899
  "default": false,
1766
1900
  "description": core_1.nls.localizeByDefault("Controls the visibility of the status bar at the bottom of the suggest widget."),
1767
- "scope": "language-overridable",
1768
1901
  "restricted": false
1769
1902
  },
1770
1903
  "editor.suggest.preview": {
1771
1904
  "type": "boolean",
1772
1905
  "default": false,
1773
1906
  "description": core_1.nls.localizeByDefault("Controls whether to preview the suggestion outcome in the editor."),
1774
- "scope": "language-overridable",
1775
1907
  "restricted": false
1776
1908
  },
1777
1909
  "editor.suggest.showInlineDetails": {
1778
1910
  "type": "boolean",
1779
1911
  "default": true,
1780
- "description": core_1.nls.localizeByDefault('Controls whether suggest details show inline with the label or only in the details widget.'),
1781
- "scope": "language-overridable",
1912
+ "description": core_1.nls.localizeByDefault("Controls whether suggest details show inline with the label or only in the details widget."),
1782
1913
  "restricted": false
1783
1914
  },
1784
1915
  "editor.suggest.maxVisibleSuggestions": {
1785
1916
  "type": "number",
1786
1917
  "deprecationMessage": "This setting is deprecated. The suggest widget can now be resized.",
1787
1918
  "default": 0,
1788
- "scope": "language-overridable",
1789
1919
  "restricted": false
1790
1920
  },
1791
1921
  "editor.suggest.filteredTypes": {
1792
1922
  "type": "object",
1793
1923
  "deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead.",
1794
1924
  "default": {},
1795
- "scope": "language-overridable",
1796
1925
  "restricted": false
1797
1926
  },
1798
1927
  "editor.suggest.showMethods": {
1799
1928
  "type": "boolean",
1800
1929
  "default": true,
1801
1930
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `method`-suggestions."),
1802
- "scope": "language-overridable",
1803
1931
  "restricted": false
1804
1932
  },
1805
1933
  "editor.suggest.showFunctions": {
1806
1934
  "type": "boolean",
1807
1935
  "default": true,
1808
1936
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `function`-suggestions."),
1809
- "scope": "language-overridable",
1810
1937
  "restricted": false
1811
1938
  },
1812
1939
  "editor.suggest.showConstructors": {
1813
1940
  "type": "boolean",
1814
1941
  "default": true,
1815
1942
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `constructor`-suggestions."),
1816
- "scope": "language-overridable",
1817
1943
  "restricted": false
1818
1944
  },
1819
1945
  "editor.suggest.showDeprecated": {
1820
1946
  "type": "boolean",
1821
1947
  "default": true,
1822
1948
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `deprecated`-suggestions."),
1823
- "scope": "language-overridable",
1824
1949
  "restricted": false
1825
1950
  },
1826
1951
  "editor.suggest.matchOnWordStartOnly": {
1827
1952
  "type": "boolean",
1828
1953
  "default": true,
1829
- "markdownDescription": core_1.nls.localize("theia/editor/editor.suggest.matchOnWordStartOnly", "When enabled IntelliSense filtering requires that the first character matches on a word start, e.g `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality."),
1830
- "scope": "language-overridable",
1954
+ "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."),
1831
1955
  "restricted": false
1832
1956
  },
1833
1957
  "editor.suggest.showFields": {
1834
1958
  "type": "boolean",
1835
1959
  "default": true,
1836
1960
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `field`-suggestions."),
1837
- "scope": "language-overridable",
1838
1961
  "restricted": false
1839
1962
  },
1840
1963
  "editor.suggest.showVariables": {
1841
1964
  "type": "boolean",
1842
1965
  "default": true,
1843
1966
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `variable`-suggestions."),
1844
- "scope": "language-overridable",
1845
1967
  "restricted": false
1846
1968
  },
1847
1969
  "editor.suggest.showClasses": {
1848
1970
  "type": "boolean",
1849
1971
  "default": true,
1850
1972
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `class`-suggestions."),
1851
- "scope": "language-overridable",
1852
1973
  "restricted": false
1853
1974
  },
1854
1975
  "editor.suggest.showStructs": {
1855
1976
  "type": "boolean",
1856
1977
  "default": true,
1857
1978
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `struct`-suggestions."),
1858
- "scope": "language-overridable",
1859
1979
  "restricted": false
1860
1980
  },
1861
1981
  "editor.suggest.showInterfaces": {
1862
1982
  "type": "boolean",
1863
1983
  "default": true,
1864
1984
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `interface`-suggestions."),
1865
- "scope": "language-overridable",
1866
1985
  "restricted": false
1867
1986
  },
1868
1987
  "editor.suggest.showModules": {
1869
1988
  "type": "boolean",
1870
1989
  "default": true,
1871
1990
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `module`-suggestions."),
1872
- "scope": "language-overridable",
1873
1991
  "restricted": false
1874
1992
  },
1875
1993
  "editor.suggest.showProperties": {
1876
1994
  "type": "boolean",
1877
1995
  "default": true,
1878
1996
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `property`-suggestions."),
1879
- "scope": "language-overridable",
1880
1997
  "restricted": false
1881
1998
  },
1882
1999
  "editor.suggest.showEvents": {
1883
2000
  "type": "boolean",
1884
2001
  "default": true,
1885
2002
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `event`-suggestions."),
1886
- "scope": "language-overridable",
1887
2003
  "restricted": false
1888
2004
  },
1889
2005
  "editor.suggest.showOperators": {
1890
2006
  "type": "boolean",
1891
2007
  "default": true,
1892
2008
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `operator`-suggestions."),
1893
- "scope": "language-overridable",
1894
2009
  "restricted": false
1895
2010
  },
1896
2011
  "editor.suggest.showUnits": {
1897
2012
  "type": "boolean",
1898
2013
  "default": true,
1899
2014
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `unit`-suggestions."),
1900
- "scope": "language-overridable",
1901
2015
  "restricted": false
1902
2016
  },
1903
2017
  "editor.suggest.showValues": {
1904
2018
  "type": "boolean",
1905
2019
  "default": true,
1906
2020
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `value`-suggestions."),
1907
- "scope": "language-overridable",
1908
2021
  "restricted": false
1909
2022
  },
1910
2023
  "editor.suggest.showConstants": {
1911
2024
  "type": "boolean",
1912
2025
  "default": true,
1913
2026
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `constant`-suggestions."),
1914
- "scope": "language-overridable",
1915
2027
  "restricted": false
1916
2028
  },
1917
2029
  "editor.suggest.showEnums": {
1918
2030
  "type": "boolean",
1919
2031
  "default": true,
1920
2032
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `enum`-suggestions."),
1921
- "scope": "language-overridable",
1922
2033
  "restricted": false
1923
2034
  },
1924
2035
  "editor.suggest.showEnumMembers": {
1925
2036
  "type": "boolean",
1926
2037
  "default": true,
1927
2038
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `enumMember`-suggestions."),
1928
- "scope": "language-overridable",
1929
2039
  "restricted": false
1930
2040
  },
1931
2041
  "editor.suggest.showKeywords": {
1932
2042
  "type": "boolean",
1933
2043
  "default": true,
1934
2044
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `keyword`-suggestions."),
1935
- "scope": "language-overridable",
1936
2045
  "restricted": false
1937
2046
  },
1938
2047
  "editor.suggest.showWords": {
1939
2048
  "type": "boolean",
1940
2049
  "default": true,
1941
2050
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `text`-suggestions."),
1942
- "scope": "language-overridable",
1943
2051
  "restricted": false
1944
2052
  },
1945
2053
  "editor.suggest.showColors": {
1946
2054
  "type": "boolean",
1947
2055
  "default": true,
1948
2056
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `color`-suggestions."),
1949
- "scope": "language-overridable",
1950
2057
  "restricted": false
1951
2058
  },
1952
2059
  "editor.suggest.showFiles": {
1953
2060
  "type": "boolean",
1954
2061
  "default": true,
1955
2062
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `file`-suggestions."),
1956
- "scope": "language-overridable",
1957
2063
  "restricted": false
1958
2064
  },
1959
2065
  "editor.suggest.showReferences": {
1960
2066
  "type": "boolean",
1961
2067
  "default": true,
1962
2068
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `reference`-suggestions."),
1963
- "scope": "language-overridable",
1964
2069
  "restricted": false
1965
2070
  },
1966
2071
  "editor.suggest.showCustomcolors": {
1967
2072
  "type": "boolean",
1968
2073
  "default": true,
1969
2074
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `customcolor`-suggestions."),
1970
- "scope": "language-overridable",
1971
2075
  "restricted": false
1972
2076
  },
1973
2077
  "editor.suggest.showFolders": {
1974
2078
  "type": "boolean",
1975
2079
  "default": true,
1976
2080
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `folder`-suggestions."),
1977
- "scope": "language-overridable",
1978
2081
  "restricted": false
1979
2082
  },
1980
2083
  "editor.suggest.showTypeParameters": {
1981
2084
  "type": "boolean",
1982
2085
  "default": true,
1983
2086
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `typeParameter`-suggestions."),
1984
- "scope": "language-overridable",
1985
2087
  "restricted": false
1986
2088
  },
1987
2089
  "editor.suggest.showSnippets": {
1988
2090
  "type": "boolean",
1989
2091
  "default": true,
1990
2092
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `snippet`-suggestions."),
1991
- "scope": "language-overridable",
1992
2093
  "restricted": false
1993
2094
  },
1994
2095
  "editor.suggest.showUsers": {
1995
2096
  "type": "boolean",
1996
2097
  "default": true,
1997
2098
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `user`-suggestions."),
1998
- "scope": "language-overridable",
1999
2099
  "restricted": false
2000
2100
  },
2001
2101
  "editor.suggest.showIssues": {
2002
2102
  "type": "boolean",
2003
2103
  "default": true,
2004
2104
  "markdownDescription": core_1.nls.localizeByDefault("When enabled IntelliSense shows `issues`-suggestions."),
2005
- "scope": "language-overridable",
2006
2105
  "restricted": false
2007
2106
  },
2008
2107
  "editor.suggestFontSize": {
2009
- "markdownDescription": core_1.nls.localizeByDefault('Font size for the suggest widget. When set to {0}, the value of {1} is used.', '`0`', '`#editor.fontSize#`'),
2108
+ "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."),
2010
2109
  "type": "integer",
2011
2110
  "default": 0,
2012
2111
  "minimum": 0,
2013
2112
  "maximum": 1000,
2014
- "scope": "language-overridable",
2015
2113
  "restricted": false
2016
2114
  },
2017
2115
  "editor.suggestLineHeight": {
2018
- "markdownDescription": core_1.nls.localizeByDefault('Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.', '`0`', '`#editor.lineHeight#`'),
2116
+ "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."),
2019
2117
  "type": "integer",
2020
2118
  "default": 0,
2021
2119
  "minimum": 0,
2022
2120
  "maximum": 1000,
2023
- "scope": "language-overridable",
2024
2121
  "restricted": false
2025
2122
  },
2026
2123
  "editor.suggestOnTriggerCharacters": {
2027
2124
  "description": core_1.nls.localizeByDefault("Controls whether suggestions should automatically show up when typing trigger characters."),
2028
2125
  "type": "boolean",
2029
2126
  "default": true,
2030
- "scope": "language-overridable",
2031
2127
  "restricted": false
2032
2128
  },
2033
2129
  "editor.suggestSelection": {
@@ -2044,7 +2140,6 @@ exports.editorGeneratedPreferenceProperties = {
2044
2140
  "recentlyUsedByPrefix"
2045
2141
  ],
2046
2142
  "default": "first",
2047
- "scope": "language-overridable",
2048
2143
  "restricted": false
2049
2144
  },
2050
2145
  "editor.tabCompletion": {
@@ -2061,7 +2156,6 @@ exports.editorGeneratedPreferenceProperties = {
2061
2156
  "onlySnippets"
2062
2157
  ],
2063
2158
  "default": "off",
2064
- "scope": "language-overridable",
2065
2159
  "restricted": false
2066
2160
  },
2067
2161
  "editor.unicodeHighlight.nonBasicASCII": {
@@ -2076,22 +2170,19 @@ exports.editorGeneratedPreferenceProperties = {
2076
2170
  "inUntrustedWorkspace"
2077
2171
  ],
2078
2172
  "default": "inUntrustedWorkspace",
2079
- "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."),
2080
- "scope": "language-overridable"
2173
+ "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.")
2081
2174
  },
2082
2175
  "editor.unicodeHighlight.invisibleCharacters": {
2083
2176
  "restricted": true,
2084
2177
  "type": "boolean",
2085
2178
  "default": true,
2086
- "description": core_1.nls.localizeByDefault("Controls whether characters that just reserve space or have no width at all are highlighted."),
2087
- "scope": "language-overridable"
2179
+ "description": core_1.nls.localizeByDefault("Controls whether characters that just reserve space or have no width at all are highlighted.")
2088
2180
  },
2089
2181
  "editor.unicodeHighlight.ambiguousCharacters": {
2090
2182
  "restricted": true,
2091
2183
  "type": "boolean",
2092
2184
  "default": true,
2093
- "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."),
2094
- "scope": "language-overridable"
2185
+ "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.")
2095
2186
  },
2096
2187
  "editor.unicodeHighlight.includeComments": {
2097
2188
  "restricted": true,
@@ -2105,8 +2196,7 @@ exports.editorGeneratedPreferenceProperties = {
2105
2196
  "inUntrustedWorkspace"
2106
2197
  ],
2107
2198
  "default": "inUntrustedWorkspace",
2108
- "description": core_1.nls.localizeByDefault('Controls whether characters in comments should also be subject to Unicode highlighting.'),
2109
- "scope": "language-overridable"
2199
+ "description": core_1.nls.localizeByDefault("Controls whether characters in comments should also be subject to Unicode highlighting.")
2110
2200
  },
2111
2201
  "editor.unicodeHighlight.includeStrings": {
2112
2202
  "restricted": true,
@@ -2120,8 +2210,7 @@ exports.editorGeneratedPreferenceProperties = {
2120
2210
  "inUntrustedWorkspace"
2121
2211
  ],
2122
2212
  "default": true,
2123
- "description": core_1.nls.localizeByDefault('Controls whether characters in strings should also be subject to Unicode highlighting.'),
2124
- "scope": "language-overridable"
2213
+ "description": core_1.nls.localizeByDefault("Controls whether characters in strings should also be subject to Unicode highlighting.")
2125
2214
  },
2126
2215
  "editor.unicodeHighlight.allowedCharacters": {
2127
2216
  "restricted": true,
@@ -2130,8 +2219,7 @@ exports.editorGeneratedPreferenceProperties = {
2130
2219
  "description": core_1.nls.localizeByDefault("Defines allowed characters that are not being highlighted."),
2131
2220
  "additionalProperties": {
2132
2221
  "type": "boolean"
2133
- },
2134
- "scope": "language-overridable"
2222
+ }
2135
2223
  },
2136
2224
  "editor.unicodeHighlight.allowedLocales": {
2137
2225
  "restricted": true,
@@ -2143,8 +2231,7 @@ exports.editorGeneratedPreferenceProperties = {
2143
2231
  "_os": true,
2144
2232
  "_vscode": true
2145
2233
  },
2146
- "description": core_1.nls.localizeByDefault("Unicode characters that are common in allowed locales are not being highlighted."),
2147
- "scope": "language-overridable"
2234
+ "description": core_1.nls.localizeByDefault("Unicode characters that are common in allowed locales are not being highlighted.")
2148
2235
  },
2149
2236
  "editor.unusualLineTerminators": {
2150
2237
  "enumDescriptions": [
@@ -2160,21 +2247,32 @@ exports.editorGeneratedPreferenceProperties = {
2160
2247
  "prompt"
2161
2248
  ],
2162
2249
  "default": "prompt",
2163
- "scope": "language-overridable",
2164
2250
  "restricted": false
2165
2251
  },
2166
2252
  "editor.useTabStops": {
2167
2253
  "description": core_1.nls.localizeByDefault("Inserting and deleting whitespace follows tab stops."),
2168
2254
  "type": "boolean",
2169
2255
  "default": true,
2170
- "scope": "language-overridable",
2256
+ "restricted": false
2257
+ },
2258
+ "editor.wordBreak": {
2259
+ "markdownEnumDescriptions": [
2260
+ core_1.nls.localizeByDefault("Use the default line break rule."),
2261
+ core_1.nls.localizeByDefault("Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal.")
2262
+ ],
2263
+ "description": core_1.nls.localizeByDefault("Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."),
2264
+ "type": "string",
2265
+ "enum": [
2266
+ "normal",
2267
+ "keepAll"
2268
+ ],
2269
+ "default": "normal",
2171
2270
  "restricted": false
2172
2271
  },
2173
2272
  "editor.wordSeparators": {
2174
2273
  "description": core_1.nls.localizeByDefault("Characters that will be used as word separators when doing word related navigations or operations."),
2175
2274
  "type": "string",
2176
2275
  "default": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
2177
- "scope": "language-overridable",
2178
2276
  "restricted": false
2179
2277
  },
2180
2278
  "editor.wordWrap": {
@@ -2193,7 +2291,6 @@ exports.editorGeneratedPreferenceProperties = {
2193
2291
  "bounded"
2194
2292
  ],
2195
2293
  "default": "off",
2196
- "scope": "language-overridable",
2197
2294
  "restricted": false
2198
2295
  },
2199
2296
  "editor.wordWrapColumn": {
@@ -2202,17 +2299,9 @@ exports.editorGeneratedPreferenceProperties = {
2202
2299
  "default": 80,
2203
2300
  "minimum": 1,
2204
2301
  "maximum": 1073741824,
2205
- "scope": "language-overridable",
2206
2302
  "restricted": false
2207
2303
  },
2208
2304
  "editor.wrappingIndent": {
2209
- "enumDescriptions": [
2210
- core_1.nls.localizeByDefault("No indentation. Wrapped lines begin at column 1."),
2211
- core_1.nls.localizeByDefault("Wrapped lines get the same indentation as the parent."),
2212
- core_1.nls.localizeByDefault("Wrapped lines get +1 indentation toward the parent."),
2213
- core_1.nls.localizeByDefault("Wrapped lines get +2 indentation toward the parent.")
2214
- ],
2215
- "description": core_1.nls.localizeByDefault("Controls the indentation of wrapped lines."),
2216
2305
  "type": "string",
2217
2306
  "enum": [
2218
2307
  "none",
@@ -2220,8 +2309,14 @@ exports.editorGeneratedPreferenceProperties = {
2220
2309
  "indent",
2221
2310
  "deepIndent"
2222
2311
  ],
2312
+ "enumDescriptions": [
2313
+ core_1.nls.localizeByDefault("No indentation. Wrapped lines begin at column 1."),
2314
+ core_1.nls.localizeByDefault("Wrapped lines get the same indentation as the parent."),
2315
+ core_1.nls.localizeByDefault("Wrapped lines get +1 indentation toward the parent."),
2316
+ core_1.nls.localizeByDefault("Wrapped lines get +2 indentation toward the parent.")
2317
+ ],
2318
+ "description": core_1.nls.localizeByDefault("Controls the indentation of wrapped lines."),
2223
2319
  "default": "same",
2224
- "scope": "language-overridable",
2225
2320
  "restricted": false
2226
2321
  },
2227
2322
  "editor.wrappingStrategy": {
@@ -2229,21 +2324,19 @@ exports.editorGeneratedPreferenceProperties = {
2229
2324
  core_1.nls.localizeByDefault("Assumes that all characters are of the same width. This is a fast algorithm that works correctly for monospace fonts and certain scripts (like Latin characters) where glyphs are of equal width."),
2230
2325
  core_1.nls.localizeByDefault("Delegates wrapping points computation to the browser. This is a slow algorithm, that might cause freezes for large files, but it works correctly in all cases.")
2231
2326
  ],
2232
- "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.'),
2233
2327
  "type": "string",
2234
2328
  "enum": [
2235
2329
  "simple",
2236
2330
  "advanced"
2237
2331
  ],
2238
2332
  "default": "simple",
2239
- "scope": "language-overridable",
2333
+ "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."),
2240
2334
  "restricted": false
2241
2335
  },
2242
2336
  "editor.showDeprecated": {
2243
2337
  "description": core_1.nls.localizeByDefault("Controls strikethrough deprecated variables."),
2244
2338
  "type": "boolean",
2245
2339
  "default": true,
2246
- "scope": "language-overridable",
2247
2340
  "restricted": false
2248
2341
  },
2249
2342
  "editor.inlayHints.enabled": {
@@ -2262,49 +2355,85 @@ exports.editorGeneratedPreferenceProperties = {
2262
2355
  core_1.nls.localize("theia/editor/editor.inlayHints.enabled2", "Inlay hints are hidden by default and show when holding Ctrl+Alt"),
2263
2356
  core_1.nls.localizeByDefault("Inlay hints are disabled")
2264
2357
  ],
2265
- "scope": "language-overridable",
2266
2358
  "restricted": false
2267
2359
  },
2268
2360
  "editor.inlayHints.fontSize": {
2269
2361
  "type": "number",
2270
2362
  "default": 0,
2271
- "markdownDescription": core_1.nls.localizeByDefault('Controls font size of inlay hints in the editor. As default the {0} is used when the configured value is less than {1} or greater than the editor font size.', '`#editor.fontSize#`'),
2272
- "scope": "language-overridable",
2363
+ "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."),
2273
2364
  "restricted": false
2274
2365
  },
2275
2366
  "editor.inlayHints.fontFamily": {
2276
2367
  "type": "string",
2277
2368
  "default": "",
2278
- "markdownDescription": core_1.nls.localizeByDefault('Controls font family of inlay hints in the editor. When set to empty, the {0} is used.', '`#editor.fontFamily#`'),
2279
- "scope": "language-overridable",
2369
+ "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."),
2280
2370
  "restricted": false
2281
2371
  },
2282
2372
  "editor.inlayHints.padding": {
2283
2373
  "type": "boolean",
2284
2374
  "default": false,
2285
2375
  "description": core_1.nls.localizeByDefault("Enables the padding around the inlay hints in the editor."),
2286
- "scope": "language-overridable",
2376
+ "restricted": false
2377
+ },
2378
+ "editor.tabFocusMode": {
2379
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether the editor receives tabs or defers them to the workbench for navigation."),
2380
+ "type": "boolean",
2381
+ "default": false,
2382
+ "restricted": false
2383
+ },
2384
+ "editor.defaultColorDecorators": {
2385
+ "markdownDescription": core_1.nls.localizeByDefault("Controls whether inline color decorations should be shown using the default document color provider"),
2386
+ "type": "boolean",
2387
+ "default": false,
2388
+ "restricted": false
2389
+ },
2390
+ "editor.colorDecoratorsActivatedOn": {
2391
+ "enumDescriptions": [
2392
+ core_1.nls.localizeByDefault("Make the color picker appear both on click and hover of the color decorator"),
2393
+ core_1.nls.localizeByDefault("Make the color picker appear on hover of the color decorator"),
2394
+ core_1.nls.localizeByDefault("Make the color picker appear on click of the color decorator")
2395
+ ],
2396
+ "description": core_1.nls.localizeByDefault("Controls the condition to make a color picker appear from a color decorator"),
2397
+ "type": "string",
2398
+ "enum": [
2399
+ "clickAndHover",
2400
+ "hover",
2401
+ "click"
2402
+ ],
2403
+ "default": "clickAndHover",
2404
+ "restricted": false
2405
+ },
2406
+ "editor.inlineCompletionsAccessibilityVerbose": {
2407
+ "description": core_1.nls.localizeByDefault("Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."),
2408
+ "type": "boolean",
2409
+ "default": false,
2287
2410
  "restricted": false
2288
2411
  },
2289
2412
  "editor.codeActionWidget.showHeaders": {
2290
2413
  "type": "boolean",
2291
- "description": core_1.nls.localize("theia/editor/editor.codeActionWidget.showHeaders", "Enable/disable showing group headers in the code action menu."),
2414
+ "description": core_1.nls.localizeByDefault("Enable/disable showing group headers in the Code Action menu."),
2292
2415
  "default": true,
2293
- "scope": "language-overridable",
2294
2416
  "restricted": false
2295
2417
  },
2296
- "editor.experimental.pasteActions.enabled": {
2418
+ "editor.codeActionWidget.includeNearbyQuickfixes": {
2297
2419
  "type": "boolean",
2298
- "description": core_1.nls.localize('theia/editor/editor.experimental.pasteActions.enabled', "Enable/disable running edits from extensions on paste."),
2420
+ "description": core_1.nls.localize("theia/editor/editor.codeActionWidget.includeNearbyQuickfixes", "Enable/disable showing nearest quickfix within a line when not currently on a diagnostic."),
2299
2421
  "default": false,
2300
- "scope": "language-overridable",
2422
+ "restricted": false
2423
+ },
2424
+ "editor.experimental.dropIntoEditor.defaultProvider": {
2425
+ "type": "object",
2426
+ "description": core_1.nls.localizeByDefault("Configures the default drop provider to use for content of a given mime type."),
2427
+ "default": {},
2428
+ "additionalProperties": {
2429
+ "type": "string"
2430
+ },
2301
2431
  "restricted": false
2302
2432
  },
2303
2433
  "editor.rename.enablePreview": {
2304
2434
  "description": core_1.nls.localizeByDefault("Enable/disable the ability to preview changes before renaming"),
2305
2435
  "default": true,
2306
2436
  "type": "boolean",
2307
- "scope": "language-overridable",
2308
2437
  "restricted": false
2309
2438
  },
2310
2439
  "editor.find.globalFindClipboard": {
@@ -2312,6 +2441,12 @@ exports.editorGeneratedPreferenceProperties = {
2312
2441
  "default": false,
2313
2442
  "description": core_1.nls.localizeByDefault("Controls whether the Find Widget should read or modify the shared find clipboard on macOS."),
2314
2443
  "included": core_1.isOSX
2444
+ },
2445
+ "editor.selectionClipboard": {
2446
+ "type": "boolean",
2447
+ "default": true,
2448
+ "description": core_1.nls.localizeByDefault("Controls whether the Linux primary clipboard should be supported."),
2449
+ "included": !core_1.isOSX && !core_1.isWindows
2315
2450
  }
2316
2451
  };
2317
2452
  //# sourceMappingURL=editor-generated-preference-schema.js.map