@theia/editor 1.34.2 → 1.34.3

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