@theia/editor 1.45.1 → 1.46.0-next.72

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