@theia/editor 1.57.0 → 1.58.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.
- package/lib/browser/editor-contribution.d.ts +2 -1
- package/lib/browser/editor-contribution.d.ts.map +1 -1
- package/lib/browser/editor-contribution.js +14 -0
- package/lib/browser/editor-contribution.js.map +1 -1
- package/lib/browser/editor-generated-preference-schema.d.ts +40 -21
- package/lib/browser/editor-generated-preference-schema.d.ts.map +1 -1
- package/lib/browser/editor-generated-preference-schema.js +275 -41
- package/lib/browser/editor-generated-preference-schema.js.map +1 -1
- package/lib/browser/editor-language-quick-pick-service.d.ts.map +1 -1
- package/lib/browser/editor-language-quick-pick-service.js +4 -2
- package/lib/browser/editor-language-quick-pick-service.js.map +1 -1
- package/lib/browser/editor-manager.d.ts +1 -2
- package/lib/browser/editor-manager.d.ts.map +1 -1
- package/lib/browser/editor-manager.js +0 -14
- package/lib/browser/editor-manager.js.map +1 -1
- package/package.json +5 -5
- package/src/browser/editor-contribution.ts +13 -1
- package/src/browser/editor-generated-preference-schema.ts +315 -58
- package/src/browser/editor-language-quick-pick-service.ts +5 -2
- package/src/browser/editor-manager.ts +2 -12
|
@@ -79,25 +79,20 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
79
79
|
"restricted": false
|
|
80
80
|
},
|
|
81
81
|
"editor.wordBasedSuggestions": {
|
|
82
|
-
"type": "boolean",
|
|
83
|
-
"default": true,
|
|
84
|
-
"description": core_1.nls.localize("theia/editor/editor.wordBasedSuggestions", "Controls whether completions should be computed based on words in the document."),
|
|
85
|
-
"scope": "language-overridable",
|
|
86
|
-
"restricted": false
|
|
87
|
-
},
|
|
88
|
-
"editor.wordBasedSuggestionsMode": {
|
|
89
82
|
"enum": [
|
|
83
|
+
"off",
|
|
90
84
|
"currentDocument",
|
|
91
85
|
"matchingDocuments",
|
|
92
86
|
"allDocuments"
|
|
93
87
|
],
|
|
94
88
|
"default": "matchingDocuments",
|
|
95
89
|
"enumDescriptions": [
|
|
90
|
+
core_1.nls.localizeByDefault("Turn off Word Based Suggestions."),
|
|
96
91
|
core_1.nls.localizeByDefault("Only suggest words from the active document."),
|
|
97
92
|
core_1.nls.localizeByDefault("Suggest words from all open documents of the same language."),
|
|
98
93
|
core_1.nls.localizeByDefault("Suggest words from all open documents.")
|
|
99
94
|
],
|
|
100
|
-
"description": core_1.nls.
|
|
95
|
+
"description": core_1.nls.localizeByDefault("Controls whether completions should be computed based on words in the document and from which documents they are computed."),
|
|
101
96
|
"scope": "language-overridable",
|
|
102
97
|
"restricted": false
|
|
103
98
|
},
|
|
@@ -133,7 +128,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
133
128
|
},
|
|
134
129
|
"editor.experimental.asyncTokenization": {
|
|
135
130
|
"type": "boolean",
|
|
136
|
-
"default":
|
|
131
|
+
"default": true,
|
|
137
132
|
"description": core_1.nls.localizeByDefault("Controls whether the tokenization should happen asynchronously on a web worker."),
|
|
138
133
|
"tags": [
|
|
139
134
|
"experimental"
|
|
@@ -158,6 +153,33 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
158
153
|
"scope": "language-overridable",
|
|
159
154
|
"restricted": false
|
|
160
155
|
},
|
|
156
|
+
"editor.experimental.treeSitterTelemetry": {
|
|
157
|
+
"type": "boolean",
|
|
158
|
+
"default": false,
|
|
159
|
+
"markdownDescription": core_1.nls.localize("theia/editor/editor.experimental.treeSitterTelemetry", "Controls whether tree sitter parsing should be turned on and telemetry collected. Setting `editor.experimental.preferTreeSitter` for specific languages will take precedence."),
|
|
160
|
+
"tags": [
|
|
161
|
+
"experimental",
|
|
162
|
+
"onExP"
|
|
163
|
+
],
|
|
164
|
+
"scope": "language-overridable",
|
|
165
|
+
"restricted": false
|
|
166
|
+
},
|
|
167
|
+
"editor.experimental.preferTreeSitter": {
|
|
168
|
+
"type": "array",
|
|
169
|
+
"items": {
|
|
170
|
+
"type": "string",
|
|
171
|
+
"enum": [
|
|
172
|
+
"typescript"
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
"default": [],
|
|
176
|
+
"markdownDescription": core_1.nls.localize("theia/editor/editor.experimental.preferTreeSitter", "Controls whether tree sitter parsing should be turned on for specific languages. This will take precedence over `editor.experimental.treeSitterTelemetry` for the specified languages."),
|
|
177
|
+
"tags": [
|
|
178
|
+
"experimental"
|
|
179
|
+
],
|
|
180
|
+
"scope": "language-overridable",
|
|
181
|
+
"restricted": false
|
|
182
|
+
},
|
|
161
183
|
"editor.language.brackets": {
|
|
162
184
|
"type": [
|
|
163
185
|
"array",
|
|
@@ -246,6 +268,13 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
246
268
|
"scope": "language-overridable",
|
|
247
269
|
"restricted": false
|
|
248
270
|
},
|
|
271
|
+
"diffEditor.renderGutterMenu": {
|
|
272
|
+
"type": "boolean",
|
|
273
|
+
"default": true,
|
|
274
|
+
"description": core_1.nls.localizeByDefault("When enabled, the diff editor shows a special gutter for revert and stage actions."),
|
|
275
|
+
"scope": "language-overridable",
|
|
276
|
+
"restricted": false
|
|
277
|
+
},
|
|
249
278
|
"diffEditor.ignoreTrimWhitespace": {
|
|
250
279
|
"type": "boolean",
|
|
251
280
|
"default": true,
|
|
@@ -294,9 +323,6 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
294
323
|
core_1.nls.localizeByDefault("Uses the legacy diffing algorithm."),
|
|
295
324
|
core_1.nls.localizeByDefault("Uses the advanced diffing algorithm.")
|
|
296
325
|
],
|
|
297
|
-
"tags": [
|
|
298
|
-
"experimental"
|
|
299
|
-
],
|
|
300
326
|
"scope": "language-overridable",
|
|
301
327
|
"restricted": false
|
|
302
328
|
},
|
|
@@ -345,6 +371,13 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
345
371
|
"scope": "language-overridable",
|
|
346
372
|
"restricted": false
|
|
347
373
|
},
|
|
374
|
+
"diffEditor.experimental.useTrueInlineView": {
|
|
375
|
+
"type": "boolean",
|
|
376
|
+
"default": false,
|
|
377
|
+
"description": core_1.nls.localize("theia/editor/diffEditor.experimental.useTrueInlineView", "If enabled and the editor uses the inline view, word changes are rendered inline."),
|
|
378
|
+
"scope": "language-overridable",
|
|
379
|
+
"restricted": false
|
|
380
|
+
},
|
|
348
381
|
"editor.acceptSuggestionOnCommitCharacter": {
|
|
349
382
|
"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."),
|
|
350
383
|
"type": "boolean",
|
|
@@ -377,9 +410,9 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
377
410
|
"off"
|
|
378
411
|
],
|
|
379
412
|
"enumDescriptions": [
|
|
380
|
-
core_1.nls.
|
|
381
|
-
core_1.nls.
|
|
382
|
-
core_1.nls.
|
|
413
|
+
core_1.nls.localizeByDefault("Use platform APIs to detect when a Screen Reader is attached."),
|
|
414
|
+
core_1.nls.localizeByDefault("Optimize for usage with a Screen Reader."),
|
|
415
|
+
core_1.nls.localizeByDefault("Assume a screen reader is not attached.")
|
|
383
416
|
],
|
|
384
417
|
"default": "auto",
|
|
385
418
|
"tags": [
|
|
@@ -729,7 +762,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
729
762
|
"restricted": false
|
|
730
763
|
},
|
|
731
764
|
"editor.cursorStyle": {
|
|
732
|
-
"description": core_1.nls.
|
|
765
|
+
"description": core_1.nls.localize("theia/editor/editor.cursorStyle", "Controls the cursor style in insert input mode."),
|
|
733
766
|
"type": "string",
|
|
734
767
|
"enum": [
|
|
735
768
|
"line",
|
|
@@ -786,7 +819,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
786
819
|
"editor.dropIntoEditor.enabled": {
|
|
787
820
|
"type": "boolean",
|
|
788
821
|
"default": true,
|
|
789
|
-
"markdownDescription": core_1.nls.
|
|
822
|
+
"markdownDescription": core_1.nls.localizeByDefault("Controls whether you can drag and drop a file into a text editor by holding down the `Shift` key (instead of opening the file in an editor)."),
|
|
790
823
|
"scope": "language-overridable",
|
|
791
824
|
"restricted": false
|
|
792
825
|
},
|
|
@@ -805,6 +838,14 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
805
838
|
"scope": "language-overridable",
|
|
806
839
|
"restricted": false
|
|
807
840
|
},
|
|
841
|
+
"editor.experimentalEditContextEnabled": {
|
|
842
|
+
"description": core_1.nls.localize("theia/editor/editor.experimentalEditContextEnabled", "Sets whether the new experimental edit context should be used instead of the text area."),
|
|
843
|
+
"included": true,
|
|
844
|
+
"type": "boolean",
|
|
845
|
+
"default": false,
|
|
846
|
+
"scope": "language-overridable",
|
|
847
|
+
"restricted": false
|
|
848
|
+
},
|
|
808
849
|
"editor.emptySelectionClipboard": {
|
|
809
850
|
"description": core_1.nls.localizeByDefault("Controls whether copying without a selection copies the current line."),
|
|
810
851
|
"type": "boolean",
|
|
@@ -891,6 +932,21 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
891
932
|
"scope": "language-overridable",
|
|
892
933
|
"restricted": false
|
|
893
934
|
},
|
|
935
|
+
"editor.find.history": {
|
|
936
|
+
"type": "string",
|
|
937
|
+
"enum": [
|
|
938
|
+
"never",
|
|
939
|
+
"workspace"
|
|
940
|
+
],
|
|
941
|
+
"default": "workspace",
|
|
942
|
+
"enumDescriptions": [
|
|
943
|
+
core_1.nls.localize("theia/editor/editor.find.history0", "Do not store search history from the find widget."),
|
|
944
|
+
core_1.nls.localize("theia/editor/editor.find.history1", "Store search history across the active workspace")
|
|
945
|
+
],
|
|
946
|
+
"description": core_1.nls.localize("theia/editor/editor.find.history", "Controls how the find widget history should be stored"),
|
|
947
|
+
"scope": "language-overridable",
|
|
948
|
+
"restricted": false
|
|
949
|
+
},
|
|
894
950
|
"editor.folding": {
|
|
895
951
|
"description": core_1.nls.localizeByDefault("Controls whether the editor has code folding enabled."),
|
|
896
952
|
"type": "boolean",
|
|
@@ -1047,6 +1103,10 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1047
1103
|
},
|
|
1048
1104
|
"editor.gotoLocation.multiple": {
|
|
1049
1105
|
"deprecationMessage": "This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.",
|
|
1106
|
+
"type": [
|
|
1107
|
+
"string",
|
|
1108
|
+
"null"
|
|
1109
|
+
],
|
|
1050
1110
|
"default": null,
|
|
1051
1111
|
"scope": "language-overridable",
|
|
1052
1112
|
"restricted": false
|
|
@@ -1275,7 +1335,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1275
1335
|
"type": "integer",
|
|
1276
1336
|
"minimum": 0,
|
|
1277
1337
|
"default": 300,
|
|
1278
|
-
"description": core_1.nls.
|
|
1338
|
+
"description": core_1.nls.localizeByDefault("Controls the delay in milliseconds after which the hover is hidden. Requires `editor.hover.sticky` to be enabled."),
|
|
1279
1339
|
"scope": "language-overridable",
|
|
1280
1340
|
"restricted": false
|
|
1281
1341
|
},
|
|
@@ -1298,16 +1358,25 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1298
1358
|
"default": "onHover",
|
|
1299
1359
|
"enum": [
|
|
1300
1360
|
"always",
|
|
1301
|
-
"onHover"
|
|
1361
|
+
"onHover",
|
|
1362
|
+
"never"
|
|
1302
1363
|
],
|
|
1303
1364
|
"enumDescriptions": [
|
|
1304
1365
|
core_1.nls.localizeByDefault("Show the inline suggestion toolbar whenever an inline suggestion is shown."),
|
|
1305
|
-
core_1.nls.localizeByDefault("Show the inline suggestion toolbar when hovering over an inline suggestion.")
|
|
1366
|
+
core_1.nls.localizeByDefault("Show the inline suggestion toolbar when hovering over an inline suggestion."),
|
|
1367
|
+
core_1.nls.localizeByDefault("Never show the inline suggestion toolbar.")
|
|
1306
1368
|
],
|
|
1307
1369
|
"description": core_1.nls.localizeByDefault("Controls when to show the inline suggestion toolbar."),
|
|
1308
1370
|
"scope": "language-overridable",
|
|
1309
1371
|
"restricted": false
|
|
1310
1372
|
},
|
|
1373
|
+
"editor.inlineSuggest.syntaxHighlightingEnabled": {
|
|
1374
|
+
"type": "boolean",
|
|
1375
|
+
"default": false,
|
|
1376
|
+
"description": core_1.nls.localize("theia/editor/editor.inlineSuggest.syntaxHighlightingEnabled", "Controls whether to show syntax highlighting for inline suggestions in the editor."),
|
|
1377
|
+
"scope": "language-overridable",
|
|
1378
|
+
"restricted": false
|
|
1379
|
+
},
|
|
1311
1380
|
"editor.inlineSuggest.suppressSuggestions": {
|
|
1312
1381
|
"type": "boolean",
|
|
1313
1382
|
"default": false,
|
|
@@ -1315,6 +1384,50 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1315
1384
|
"scope": "language-overridable",
|
|
1316
1385
|
"restricted": false
|
|
1317
1386
|
},
|
|
1387
|
+
"editor.inlineSuggest.fontFamily": {
|
|
1388
|
+
"type": "string",
|
|
1389
|
+
"default": "default",
|
|
1390
|
+
"description": core_1.nls.localizeByDefault("Controls the font family of the inline suggestions."),
|
|
1391
|
+
"scope": "language-overridable",
|
|
1392
|
+
"restricted": false
|
|
1393
|
+
},
|
|
1394
|
+
"editor.inlineSuggest.edits.experimental.enabled": {
|
|
1395
|
+
"type": "boolean",
|
|
1396
|
+
"default": true,
|
|
1397
|
+
"description": core_1.nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.enabled", "Controls whether to enable experimental edits in inline suggestions."),
|
|
1398
|
+
"scope": "language-overridable",
|
|
1399
|
+
"restricted": false
|
|
1400
|
+
},
|
|
1401
|
+
"editor.inlineSuggest.edits.experimental.useMixedLinesDiff": {
|
|
1402
|
+
"type": "string",
|
|
1403
|
+
"default": "never",
|
|
1404
|
+
"description": core_1.nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.useMixedLinesDiff", "Controls whether to enable experimental edits in inline suggestions."),
|
|
1405
|
+
"enum": [
|
|
1406
|
+
"never",
|
|
1407
|
+
"whenPossible"
|
|
1408
|
+
],
|
|
1409
|
+
"scope": "language-overridable",
|
|
1410
|
+
"restricted": false
|
|
1411
|
+
},
|
|
1412
|
+
"editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff": {
|
|
1413
|
+
"type": "string",
|
|
1414
|
+
"default": "never",
|
|
1415
|
+
"description": core_1.nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.useInterleavedLinesDiff", "Controls whether to enable experimental interleaved lines diff in inline suggestions."),
|
|
1416
|
+
"enum": [
|
|
1417
|
+
"never",
|
|
1418
|
+
"always",
|
|
1419
|
+
"afterJump"
|
|
1420
|
+
],
|
|
1421
|
+
"scope": "language-overridable",
|
|
1422
|
+
"restricted": false
|
|
1423
|
+
},
|
|
1424
|
+
"editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor": {
|
|
1425
|
+
"type": "boolean",
|
|
1426
|
+
"default": true,
|
|
1427
|
+
"description": core_1.nls.localize("theia/editor/editor.inlineSuggest.edits.experimental.onlyShowWhenCloseToCursor", "Controls whether to only show inline suggestions when the cursor is close to the suggestion."),
|
|
1428
|
+
"scope": "language-overridable",
|
|
1429
|
+
"restricted": false
|
|
1430
|
+
},
|
|
1318
1431
|
"editor.letterSpacing": {
|
|
1319
1432
|
"description": core_1.nls.localizeByDefault("Controls the letter spacing in pixels."),
|
|
1320
1433
|
"type": "number",
|
|
@@ -1323,8 +1436,18 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1323
1436
|
"restricted": false
|
|
1324
1437
|
},
|
|
1325
1438
|
"editor.lightbulb.enabled": {
|
|
1326
|
-
"type": "
|
|
1327
|
-
"
|
|
1439
|
+
"type": "string",
|
|
1440
|
+
"enum": [
|
|
1441
|
+
"off",
|
|
1442
|
+
"onCode",
|
|
1443
|
+
"on"
|
|
1444
|
+
],
|
|
1445
|
+
"default": "onCode",
|
|
1446
|
+
"enumDescriptions": [
|
|
1447
|
+
core_1.nls.localizeByDefault("Disable the code action menu."),
|
|
1448
|
+
core_1.nls.localizeByDefault("Show the code action menu when the cursor is on lines with code."),
|
|
1449
|
+
core_1.nls.localizeByDefault("Show the code action menu when the cursor is on lines with code or on empty lines.")
|
|
1450
|
+
],
|
|
1328
1451
|
"description": core_1.nls.localizeByDefault("Enables the Code Action lightbulb in the editor."),
|
|
1329
1452
|
"scope": "language-overridable",
|
|
1330
1453
|
"restricted": false
|
|
@@ -1462,6 +1585,34 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1462
1585
|
"scope": "language-overridable",
|
|
1463
1586
|
"restricted": false
|
|
1464
1587
|
},
|
|
1588
|
+
"editor.minimap.showRegionSectionHeaders": {
|
|
1589
|
+
"type": "boolean",
|
|
1590
|
+
"default": true,
|
|
1591
|
+
"description": core_1.nls.localizeByDefault("Controls whether named regions are shown as section headers in the minimap."),
|
|
1592
|
+
"scope": "language-overridable",
|
|
1593
|
+
"restricted": false
|
|
1594
|
+
},
|
|
1595
|
+
"editor.minimap.showMarkSectionHeaders": {
|
|
1596
|
+
"type": "boolean",
|
|
1597
|
+
"default": true,
|
|
1598
|
+
"description": core_1.nls.localizeByDefault("Controls whether MARK: comments are shown as section headers in the minimap."),
|
|
1599
|
+
"scope": "language-overridable",
|
|
1600
|
+
"restricted": false
|
|
1601
|
+
},
|
|
1602
|
+
"editor.minimap.sectionHeaderFontSize": {
|
|
1603
|
+
"type": "number",
|
|
1604
|
+
"default": 9,
|
|
1605
|
+
"description": core_1.nls.localizeByDefault("Controls the font size of section headers in the minimap."),
|
|
1606
|
+
"scope": "language-overridable",
|
|
1607
|
+
"restricted": false
|
|
1608
|
+
},
|
|
1609
|
+
"editor.minimap.sectionHeaderLetterSpacing": {
|
|
1610
|
+
"type": "number",
|
|
1611
|
+
"default": 1,
|
|
1612
|
+
"description": core_1.nls.localize("theia/editor/editor.minimap.sectionHeaderLetterSpacing", "Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."),
|
|
1613
|
+
"scope": "language-overridable",
|
|
1614
|
+
"restricted": false
|
|
1615
|
+
},
|
|
1465
1616
|
"editor.mouseWheelScrollSensitivity": {
|
|
1466
1617
|
"markdownDescription": core_1.nls.localizeByDefault("A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."),
|
|
1467
1618
|
"type": "number",
|
|
@@ -1523,7 +1674,51 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1523
1674
|
"restricted": false
|
|
1524
1675
|
},
|
|
1525
1676
|
"editor.occurrencesHighlight": {
|
|
1526
|
-
"
|
|
1677
|
+
"markdownEnumDescriptions": [
|
|
1678
|
+
core_1.nls.localizeByDefault("Does not highlight occurrences."),
|
|
1679
|
+
core_1.nls.localizeByDefault("Highlights occurrences only in the current file."),
|
|
1680
|
+
core_1.nls.localizeByDefault("Experimental: Highlights occurrences across all valid open files.")
|
|
1681
|
+
],
|
|
1682
|
+
"markdownDescription": core_1.nls.localizeByDefault("Controls whether occurrences should be highlighted across open files."),
|
|
1683
|
+
"type": "string",
|
|
1684
|
+
"enum": [
|
|
1685
|
+
"off",
|
|
1686
|
+
"singleFile",
|
|
1687
|
+
"multiFile"
|
|
1688
|
+
],
|
|
1689
|
+
"default": "singleFile",
|
|
1690
|
+
"scope": "language-overridable",
|
|
1691
|
+
"restricted": false
|
|
1692
|
+
},
|
|
1693
|
+
"editor.occurrencesHighlightDelay": {
|
|
1694
|
+
"description": core_1.nls.localize("theia/editor/editor.occurrencesHighlightDelay", "Controls the delay in milliseconds after which occurrences are highlighted."),
|
|
1695
|
+
"tags": [
|
|
1696
|
+
"preview"
|
|
1697
|
+
],
|
|
1698
|
+
"type": "integer",
|
|
1699
|
+
"default": 250,
|
|
1700
|
+
"minimum": 0,
|
|
1701
|
+
"maximum": 2000,
|
|
1702
|
+
"scope": "language-overridable",
|
|
1703
|
+
"restricted": false
|
|
1704
|
+
},
|
|
1705
|
+
"editor.overtypeCursorStyle": {
|
|
1706
|
+
"description": core_1.nls.localize("theia/editor/editor.overtypeCursorStyle", "Controls the cursor style in overtype input mode."),
|
|
1707
|
+
"type": "string",
|
|
1708
|
+
"enum": [
|
|
1709
|
+
"line",
|
|
1710
|
+
"block",
|
|
1711
|
+
"underline",
|
|
1712
|
+
"line-thin",
|
|
1713
|
+
"block-outline",
|
|
1714
|
+
"underline-thin"
|
|
1715
|
+
],
|
|
1716
|
+
"default": "block",
|
|
1717
|
+
"scope": "language-overridable",
|
|
1718
|
+
"restricted": false
|
|
1719
|
+
},
|
|
1720
|
+
"editor.overtypeOnPaste": {
|
|
1721
|
+
"description": core_1.nls.localize("theia/editor/editor.overtypeOnPaste", "Controls whether pasting should overtype."),
|
|
1527
1722
|
"type": "boolean",
|
|
1528
1723
|
"default": true,
|
|
1529
1724
|
"scope": "language-overridable",
|
|
@@ -1688,7 +1883,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1688
1883
|
"comments": "off",
|
|
1689
1884
|
"strings": "off"
|
|
1690
1885
|
},
|
|
1691
|
-
"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
|
|
1886
|
+
"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."),
|
|
1692
1887
|
"scope": "language-overridable",
|
|
1693
1888
|
"restricted": false
|
|
1694
1889
|
},
|
|
@@ -1869,6 +2064,13 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1869
2064
|
"scope": "language-overridable",
|
|
1870
2065
|
"restricted": false
|
|
1871
2066
|
},
|
|
2067
|
+
"editor.scrollbar.ignoreHorizontalScrollbarInContentHeight": {
|
|
2068
|
+
"type": "boolean",
|
|
2069
|
+
"default": false,
|
|
2070
|
+
"description": core_1.nls.localizeByDefault("When set, the horizontal scrollbar will not increase the size of the editor's content."),
|
|
2071
|
+
"scope": "language-overridable",
|
|
2072
|
+
"restricted": false
|
|
2073
|
+
},
|
|
1872
2074
|
"editor.scrollBeyondLastColumn": {
|
|
1873
2075
|
"description": core_1.nls.localizeByDefault("Controls the number of extra characters beyond which the editor will scroll horizontally."),
|
|
1874
2076
|
"type": "integer",
|
|
@@ -1965,7 +2167,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1965
2167
|
},
|
|
1966
2168
|
"editor.stickyScroll.enabled": {
|
|
1967
2169
|
"type": "boolean",
|
|
1968
|
-
"default":
|
|
2170
|
+
"default": true,
|
|
1969
2171
|
"description": core_1.nls.localizeByDefault("Shows the nested current scopes during the scroll at the top of the editor."),
|
|
1970
2172
|
"scope": "language-overridable",
|
|
1971
2173
|
"restricted": false
|
|
@@ -1974,7 +2176,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1974
2176
|
"type": "number",
|
|
1975
2177
|
"default": 5,
|
|
1976
2178
|
"minimum": 1,
|
|
1977
|
-
"maximum":
|
|
2179
|
+
"maximum": 20,
|
|
1978
2180
|
"description": core_1.nls.localizeByDefault("Defines the maximum number of sticky lines to show."),
|
|
1979
2181
|
"scope": "language-overridable",
|
|
1980
2182
|
"restricted": false
|
|
@@ -1994,7 +2196,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
1994
2196
|
"editor.stickyScroll.scrollWithEditor": {
|
|
1995
2197
|
"type": "boolean",
|
|
1996
2198
|
"default": true,
|
|
1997
|
-
"description": core_1.nls.
|
|
2199
|
+
"description": core_1.nls.localizeByDefault("Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."),
|
|
1998
2200
|
"scope": "language-overridable",
|
|
1999
2201
|
"restricted": false
|
|
2000
2202
|
},
|
|
@@ -2478,7 +2680,7 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
2478
2680
|
"restricted": false
|
|
2479
2681
|
},
|
|
2480
2682
|
"editor.useTabStops": {
|
|
2481
|
-
"description": core_1.nls.
|
|
2683
|
+
"description": core_1.nls.localizeByDefault("Spaces and tabs are inserted and deleted in alignment with tab stops."),
|
|
2482
2684
|
"type": "boolean",
|
|
2483
2685
|
"default": true,
|
|
2484
2686
|
"scope": "language-overridable",
|
|
@@ -2499,6 +2701,24 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
2499
2701
|
"scope": "language-overridable",
|
|
2500
2702
|
"restricted": false
|
|
2501
2703
|
},
|
|
2704
|
+
"editor.wordSegmenterLocales": {
|
|
2705
|
+
"anyOf": [
|
|
2706
|
+
{
|
|
2707
|
+
"description": core_1.nls.localizeByDefault("Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."),
|
|
2708
|
+
"type": "string"
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
"description": core_1.nls.localizeByDefault("Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."),
|
|
2712
|
+
"type": "array",
|
|
2713
|
+
"items": {
|
|
2714
|
+
"type": "string"
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
],
|
|
2718
|
+
"default": [],
|
|
2719
|
+
"scope": "language-overridable",
|
|
2720
|
+
"restricted": false
|
|
2721
|
+
},
|
|
2502
2722
|
"editor.wordSeparators": {
|
|
2503
2723
|
"description": core_1.nls.localizeByDefault("Characters that will be used as word separators when doing word related navigations or operations."),
|
|
2504
2724
|
"type": "string",
|
|
@@ -2615,6 +2835,13 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
2615
2835
|
"scope": "language-overridable",
|
|
2616
2836
|
"restricted": false
|
|
2617
2837
|
},
|
|
2838
|
+
"editor.inlayHints.maximumLength": {
|
|
2839
|
+
"type": "number",
|
|
2840
|
+
"default": 43,
|
|
2841
|
+
"markdownDescription": core_1.nls.localize("theia/editor/editor.inlayHints.maximumLength", "Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"),
|
|
2842
|
+
"scope": "language-overridable",
|
|
2843
|
+
"restricted": false
|
|
2844
|
+
},
|
|
2618
2845
|
"editor.tabFocusMode": {
|
|
2619
2846
|
"markdownDescription": core_1.nls.localizeByDefault("Controls whether the editor receives tabs or defers them to the workbench for navigation."),
|
|
2620
2847
|
"type": "boolean",
|
|
@@ -2623,9 +2850,19 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
2623
2850
|
"restricted": false
|
|
2624
2851
|
},
|
|
2625
2852
|
"editor.defaultColorDecorators": {
|
|
2626
|
-
"
|
|
2627
|
-
|
|
2628
|
-
|
|
2853
|
+
"enumDescriptions": [
|
|
2854
|
+
core_1.nls.localize("theia/editor/editor.defaultColorDecorators0", "Show default color decorators only when no extension provides colors decorators."),
|
|
2855
|
+
core_1.nls.localize("theia/editor/editor.defaultColorDecorators1", "Always show default color decorators."),
|
|
2856
|
+
core_1.nls.localize("theia/editor/editor.defaultColorDecorators2", "Never show default color decorators.")
|
|
2857
|
+
],
|
|
2858
|
+
"description": core_1.nls.localize("theia/editor/editor.defaultColorDecorators", "Controls whether inline color decorations should be shown using the default document color provider."),
|
|
2859
|
+
"type": "string",
|
|
2860
|
+
"enum": [
|
|
2861
|
+
"auto",
|
|
2862
|
+
"always",
|
|
2863
|
+
"never"
|
|
2864
|
+
],
|
|
2865
|
+
"default": "auto",
|
|
2629
2866
|
"scope": "language-overridable",
|
|
2630
2867
|
"restricted": false
|
|
2631
2868
|
},
|
|
@@ -2660,21 +2897,18 @@ exports.editorGeneratedPreferenceProperties = {
|
|
|
2660
2897
|
"default": true,
|
|
2661
2898
|
"restricted": false
|
|
2662
2899
|
},
|
|
2663
|
-
"editor.codeActionWidget.
|
|
2900
|
+
"editor.codeActionWidget.includeNearbyQuickFixes": {
|
|
2664
2901
|
"type": "boolean",
|
|
2665
2902
|
"scope": "language-overridable",
|
|
2666
|
-
"description": core_1.nls.
|
|
2667
|
-
"default":
|
|
2903
|
+
"description": core_1.nls.localizeByDefault("Enable/disable showing nearest Quick Fix within a line when not currently on a diagnostic."),
|
|
2904
|
+
"default": true,
|
|
2668
2905
|
"restricted": false
|
|
2669
2906
|
},
|
|
2670
|
-
"editor.
|
|
2671
|
-
"type": "
|
|
2907
|
+
"editor.codeActions.triggerOnFocusChange": {
|
|
2908
|
+
"type": "boolean",
|
|
2672
2909
|
"scope": "language-overridable",
|
|
2673
|
-
"
|
|
2674
|
-
"default":
|
|
2675
|
-
"additionalProperties": {
|
|
2676
|
-
"type": "string"
|
|
2677
|
-
},
|
|
2910
|
+
"markdownDescription": core_1.nls.localize("theia/editor/editor.codeActions.triggerOnFocusChange", "Enable triggering `#editor.codeActionsOnSave#` when `#files.autoSave#` is set to `afterDelay`. Code Actions must be set to `always` to be triggered for window and focus changes."),
|
|
2911
|
+
"default": false,
|
|
2678
2912
|
"restricted": false
|
|
2679
2913
|
},
|
|
2680
2914
|
"editor.rename.enablePreview": {
|