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