@lvce-editor/editor-worker 19.53.0 → 19.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editorWorkerMain.js +18 -0
- package/dist/settings.json +123 -123
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -5435,6 +5435,9 @@ const get$3 = async key => {
|
|
|
5435
5435
|
const value = await getPreference(key);
|
|
5436
5436
|
return value;
|
|
5437
5437
|
};
|
|
5438
|
+
const update = async settings => {
|
|
5439
|
+
await invoke$a('Preferences.update', settings);
|
|
5440
|
+
};
|
|
5438
5441
|
|
|
5439
5442
|
const createEditor = async ({
|
|
5440
5443
|
assetDir,
|
|
@@ -8337,6 +8340,7 @@ const ToggleBlockComment = 'Toggle Block Comment';
|
|
|
8337
8340
|
const ToggleBreakpoint = 'Toggle Breakpoint';
|
|
8338
8341
|
const Undo = 'Undo';
|
|
8339
8342
|
const Unfold = 'Editor: Unfold';
|
|
8343
|
+
const ViewToggleMinimap = 'View: Toggle Minimap';
|
|
8340
8344
|
|
|
8341
8345
|
const goToDefinition$1 = () => {
|
|
8342
8346
|
return i18nString(GoToDefinition);
|
|
@@ -8474,6 +8478,9 @@ const editorOpenColorPicker = () => {
|
|
|
8474
8478
|
const editorCloseColorPicker = () => {
|
|
8475
8479
|
return i18nString(EditorCloseColorPicker);
|
|
8476
8480
|
};
|
|
8481
|
+
const viewToggleMinimap = () => {
|
|
8482
|
+
return i18nString(ViewToggleMinimap);
|
|
8483
|
+
};
|
|
8477
8484
|
const editorCopyLineDown = () => {
|
|
8478
8485
|
return i18nString(EditorCopyLineDown);
|
|
8479
8486
|
};
|
|
@@ -13843,6 +13850,9 @@ const getQuickPickMenuEntries = () => {
|
|
|
13843
13850
|
}, {
|
|
13844
13851
|
id: 'Editor.showSourceActions2',
|
|
13845
13852
|
label: sourceAction()
|
|
13853
|
+
}, {
|
|
13854
|
+
id: 'Editor.toggleMinimap',
|
|
13855
|
+
label: viewToggleMinimap()
|
|
13846
13856
|
}];
|
|
13847
13857
|
};
|
|
13848
13858
|
|
|
@@ -15998,6 +16008,13 @@ const setDebugEnabled = (state, enabled) => {
|
|
|
15998
16008
|
return state;
|
|
15999
16009
|
};
|
|
16000
16010
|
|
|
16011
|
+
const toggleMinimap = async () => {
|
|
16012
|
+
const minimapEnabled = await getMinimapEnabled();
|
|
16013
|
+
await update({
|
|
16014
|
+
'editor.minimap.enabled': !minimapEnabled
|
|
16015
|
+
});
|
|
16016
|
+
};
|
|
16017
|
+
|
|
16001
16018
|
/**
|
|
16002
16019
|
* Unregister a listener for editor events
|
|
16003
16020
|
* @param listenerType - The type of event to stop listening for
|
|
@@ -16511,6 +16528,7 @@ const commandMap = {
|
|
|
16511
16528
|
'Editor.toggleBreakpoint': wrapCommand(toggleBreakpoint),
|
|
16512
16529
|
'Editor.toggleComment': wrapCommand(toggleComment),
|
|
16513
16530
|
'Editor.toggleLineComment': wrapCommand(editorToggleLineComment),
|
|
16531
|
+
'Editor.toggleMinimap': toggleMinimap,
|
|
16514
16532
|
'Editor.type': wrapCommand(type, true),
|
|
16515
16533
|
'Editor.typeWithAutoClosing': wrapCommand(typeWithAutoClosing, true),
|
|
16516
16534
|
'Editor.undo': wrapCommand(undo),
|
package/dist/settings.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "The font size of the editor",
|
|
5
5
|
"heading": "Font Size",
|
|
6
6
|
"id": "editor.fontSize",
|
|
7
|
-
"type":
|
|
7
|
+
"type": "number",
|
|
8
8
|
"value": 15,
|
|
9
9
|
"minimum": 10,
|
|
10
10
|
"maximum": 100
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"description": "The font family of the editor",
|
|
15
15
|
"heading": "Font Family",
|
|
16
16
|
"id": "editor.fontFamily",
|
|
17
|
-
"type":
|
|
17
|
+
"type": "string",
|
|
18
18
|
"value": "Fira Code"
|
|
19
19
|
},
|
|
20
20
|
{
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"description": "Format a file when it is saved",
|
|
23
23
|
"heading": "Format On Save",
|
|
24
24
|
"id": "editor.formatOnSave",
|
|
25
|
-
"type":
|
|
25
|
+
"type": "boolean",
|
|
26
26
|
"value": false
|
|
27
27
|
},
|
|
28
28
|
{
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"description": "Show completions automatically while typing",
|
|
31
31
|
"heading": "Completions On Type",
|
|
32
32
|
"id": "editor.completionsOnType",
|
|
33
|
-
"type":
|
|
33
|
+
"type": "boolean",
|
|
34
34
|
"value": false
|
|
35
35
|
},
|
|
36
36
|
{
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"description": "Show diagnostics in the editor",
|
|
39
39
|
"heading": "Diagnostics",
|
|
40
40
|
"id": "editor.diagnostics",
|
|
41
|
-
"type":
|
|
41
|
+
"type": "boolean",
|
|
42
42
|
"value": true
|
|
43
43
|
},
|
|
44
44
|
{
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"description": "The font weight of the editor",
|
|
47
47
|
"heading": "Font Weight",
|
|
48
48
|
"id": "editor.fontWeight",
|
|
49
|
-
"type":
|
|
49
|
+
"type": "number",
|
|
50
50
|
"value": 400,
|
|
51
51
|
"minimum": 100,
|
|
52
52
|
"maximum": 900
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"description": "Show breadcrumbs above the editor",
|
|
57
57
|
"heading": "Breadcrumbs",
|
|
58
58
|
"id": "breadcrumbs.enabled",
|
|
59
|
-
"type":
|
|
59
|
+
"type": "boolean",
|
|
60
60
|
"value": false
|
|
61
61
|
},
|
|
62
62
|
{
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"label": "off"
|
|
75
75
|
}
|
|
76
76
|
],
|
|
77
|
-
"type":
|
|
77
|
+
"type": "enum",
|
|
78
78
|
"value": "off"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"label": "off"
|
|
93
93
|
}
|
|
94
94
|
],
|
|
95
|
-
"type":
|
|
95
|
+
"type": "enum",
|
|
96
96
|
"value": "on"
|
|
97
97
|
},
|
|
98
98
|
{
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"description": "Controls whether actions for accepting merge conflict changes are shown in the editor",
|
|
101
101
|
"heading": "Merge Conflict Actions",
|
|
102
102
|
"id": "editor.mergeConflictActions",
|
|
103
|
-
"type":
|
|
103
|
+
"type": "boolean",
|
|
104
104
|
"value": false
|
|
105
105
|
},
|
|
106
106
|
{
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"description": "Controls whether the primary cursor line number is highlighted",
|
|
109
109
|
"heading": "Highlight Active Line Number",
|
|
110
110
|
"id": "editor.highlightActiveLineNumber",
|
|
111
|
-
"type":
|
|
111
|
+
"type": "boolean",
|
|
112
112
|
"value": true
|
|
113
113
|
},
|
|
114
114
|
{
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"description": "Controls whether the minimap is shown",
|
|
117
117
|
"heading": "Minimap",
|
|
118
118
|
"id": "editor.minimap.enabled",
|
|
119
|
-
"type":
|
|
119
|
+
"type": "boolean",
|
|
120
120
|
"value": false
|
|
121
121
|
},
|
|
122
122
|
{
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"description": "Controls whether the editor will scroll beyond the last line",
|
|
125
125
|
"heading": "Scroll Beyond Last Line",
|
|
126
126
|
"id": "editor.scrollBeyondLastLine",
|
|
127
|
-
"type":
|
|
127
|
+
"type": "boolean",
|
|
128
128
|
"value": "false"
|
|
129
129
|
},
|
|
130
130
|
{
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"description": "Controls whether the editor will scroll smoothly",
|
|
133
133
|
"heading": "Smooth Scrolling",
|
|
134
134
|
"id": "editor.smoothScrolling",
|
|
135
|
-
"type":
|
|
135
|
+
"type": "boolean",
|
|
136
136
|
"value": "true"
|
|
137
137
|
},
|
|
138
138
|
{
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
"description": "Controls how the cursor should blink",
|
|
141
141
|
"heading": "Cursor Blinking",
|
|
142
142
|
"id": "editor.cursorBlinking",
|
|
143
|
-
"type":
|
|
143
|
+
"type": "string",
|
|
144
144
|
"value": "blink"
|
|
145
145
|
},
|
|
146
146
|
{
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"description": "Controls the cursor style",
|
|
149
149
|
"heading": "Cursor Style",
|
|
150
150
|
"id": "editor.cursorStyle",
|
|
151
|
-
"type":
|
|
151
|
+
"type": "string",
|
|
152
152
|
"value": "line"
|
|
153
153
|
},
|
|
154
154
|
{
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"description": "Controls the width of the cursor",
|
|
157
157
|
"heading": "Cursor Width",
|
|
158
158
|
"id": "editor.cursorWidth",
|
|
159
|
-
"type":
|
|
159
|
+
"type": "number",
|
|
160
160
|
"value": "0"
|
|
161
161
|
},
|
|
162
162
|
{
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
"description": "The number of spaces a tab is equal to",
|
|
165
165
|
"heading": "Tab Size",
|
|
166
166
|
"id": "editor.tabSize",
|
|
167
|
-
"type":
|
|
167
|
+
"type": "number",
|
|
168
168
|
"value": 4,
|
|
169
169
|
"minimum": 1,
|
|
170
170
|
"maximum": 8
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"description": "Insert spaces when pressing Tab",
|
|
175
175
|
"heading": "Insert Spaces",
|
|
176
176
|
"id": "editor.insertSpaces",
|
|
177
|
-
"type":
|
|
177
|
+
"type": "boolean",
|
|
178
178
|
"value": "true"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
"description": "Controls whether the editor will automatically adjust the indentation",
|
|
183
183
|
"heading": "Detect Indentation",
|
|
184
184
|
"id": "editor.detectIndentation",
|
|
185
|
-
"type":
|
|
185
|
+
"type": "boolean",
|
|
186
186
|
"value": "true"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
"description": "Remove trailing auto inserted whitespace",
|
|
191
191
|
"heading": "Trim Auto Whitespace",
|
|
192
192
|
"id": "editor.trimAutoWhitespace",
|
|
193
|
-
"type":
|
|
193
|
+
"type": "boolean",
|
|
194
194
|
"value": "true"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"description": "Special handling for large files to disable certain features",
|
|
199
199
|
"heading": "Large File Optimizations",
|
|
200
200
|
"id": "editor.largeFileOptimizations",
|
|
201
|
-
"type":
|
|
201
|
+
"type": "boolean",
|
|
202
202
|
"value": "true"
|
|
203
203
|
},
|
|
204
204
|
{
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
"description": "Controls how the editor should render whitespace characters",
|
|
207
207
|
"heading": "Render Whitespace",
|
|
208
208
|
"id": "editor.renderWhitespace",
|
|
209
|
-
"type":
|
|
209
|
+
"type": "string",
|
|
210
210
|
"value": "selection"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"description": "Controls whether the editor should render control characters",
|
|
215
215
|
"heading": "Render Control Characters",
|
|
216
216
|
"id": "editor.renderControlCharacters",
|
|
217
|
-
"type":
|
|
217
|
+
"type": "boolean",
|
|
218
218
|
"value": "false"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
"description": "Controls how the editor should render the current line highlight",
|
|
223
223
|
"heading": "Render Line Highlight",
|
|
224
224
|
"id": "editor.renderLineHighlight",
|
|
225
|
-
"type":
|
|
225
|
+
"type": "string",
|
|
226
226
|
"value": "line"
|
|
227
227
|
},
|
|
228
228
|
{
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
"description": "Controls whether the editor shows CodeLens",
|
|
231
231
|
"heading": "Code Lens",
|
|
232
232
|
"id": "editor.codeLens",
|
|
233
|
-
"type":
|
|
233
|
+
"type": "boolean",
|
|
234
234
|
"value": "true"
|
|
235
235
|
},
|
|
236
236
|
{
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
"description": "Controls whether the editor has code folding enabled",
|
|
239
239
|
"heading": "Folding",
|
|
240
240
|
"id": "editor.folding",
|
|
241
|
-
"type":
|
|
241
|
+
"type": "boolean",
|
|
242
242
|
"value": "true"
|
|
243
243
|
},
|
|
244
244
|
{
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
"description": "Controls when the folding controls on the gutter are automatically hidden",
|
|
247
247
|
"heading": "Show Folding Controls",
|
|
248
248
|
"id": "editor.showFoldingControls",
|
|
249
|
-
"type":
|
|
249
|
+
"type": "string",
|
|
250
250
|
"value": "mouseover"
|
|
251
251
|
},
|
|
252
252
|
{
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
"description": "Controls whether clicking on the empty content after a folded line will unfold the line",
|
|
255
255
|
"heading": "Unfold On Click After End",
|
|
256
256
|
"id": "editor.unfoldOnClickAfterEnd",
|
|
257
|
-
"type":
|
|
257
|
+
"type": "boolean",
|
|
258
258
|
"value": "false"
|
|
259
259
|
},
|
|
260
260
|
{
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"description": "Controls whether the editor should detect links and make them clickable",
|
|
263
263
|
"heading": "Links",
|
|
264
264
|
"id": "editor.links",
|
|
265
|
-
"type":
|
|
265
|
+
"type": "boolean",
|
|
266
266
|
"value": "true"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"description": "Controls whether the editor should render the inline color decorators and color picker",
|
|
271
271
|
"heading": "Color Decorators",
|
|
272
272
|
"id": "editor.colorDecorators",
|
|
273
|
-
"type":
|
|
273
|
+
"type": "boolean",
|
|
274
274
|
"value": "true"
|
|
275
275
|
},
|
|
276
276
|
{
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
"description": "Controls whether the editor should show the lightbulb code action",
|
|
279
279
|
"heading": "Lightbulb",
|
|
280
280
|
"id": "editor.lightbulb",
|
|
281
|
-
"type":
|
|
281
|
+
"type": "boolean",
|
|
282
282
|
"value": "true"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
"description": "Code actions to be run on save",
|
|
287
287
|
"heading": "Code Actions On Save",
|
|
288
288
|
"id": "editor.codeActionsOnSave",
|
|
289
|
-
"type":
|
|
289
|
+
"type": "boolean",
|
|
290
290
|
"value": "false"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
"description": "Format a file on paste",
|
|
295
295
|
"heading": "Format On Paste",
|
|
296
296
|
"id": "editor.formatOnPaste",
|
|
297
|
-
"type":
|
|
297
|
+
"type": "boolean",
|
|
298
298
|
"value": "false"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
"description": "Format a file on type",
|
|
303
303
|
"heading": "Format On Type",
|
|
304
304
|
"id": "editor.formatOnType",
|
|
305
|
-
"type":
|
|
305
|
+
"type": "boolean",
|
|
306
306
|
"value": "false"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
"description": "Controls if suggestions should be accepted on commit characters",
|
|
311
311
|
"heading": "Accept Suggestion On Commit Character",
|
|
312
312
|
"id": "editor.acceptSuggestionOnCommitCharacter",
|
|
313
|
-
"type":
|
|
313
|
+
"type": "boolean",
|
|
314
314
|
"value": "true"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
"description": "Controls if suggestions should be accepted on Enter",
|
|
319
319
|
"heading": "Accept Suggestion On Enter",
|
|
320
320
|
"id": "editor.acceptSuggestionOnEnter",
|
|
321
|
-
"type":
|
|
321
|
+
"type": "string",
|
|
322
322
|
"value": "on"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
"description": "Enables tab completions",
|
|
327
327
|
"heading": "Tab Completion",
|
|
328
328
|
"id": "editor.tabCompletion",
|
|
329
|
-
"type":
|
|
329
|
+
"type": "string",
|
|
330
330
|
"value": "on"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
"description": "Controls whether completions should be computed based on words in the document",
|
|
335
335
|
"heading": "Word Based Suggestions",
|
|
336
336
|
"id": "editor.wordBasedSuggestions",
|
|
337
|
-
"type":
|
|
337
|
+
"type": "boolean",
|
|
338
338
|
"value": "true"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
"description": "Controls whether suggestions should automatically show up when typing trigger characters",
|
|
343
343
|
"heading": "Suggest On Trigger Characters",
|
|
344
344
|
"id": "editor.suggestOnTriggerCharacters",
|
|
345
|
-
"type":
|
|
345
|
+
"type": "boolean",
|
|
346
346
|
"value": "true"
|
|
347
347
|
},
|
|
348
348
|
{
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
"description": "Controls whether suggestions should automatically show up while typing",
|
|
351
351
|
"heading": "Quick Suggestions",
|
|
352
352
|
"id": "editor.quickSuggestions",
|
|
353
|
-
"type":
|
|
353
|
+
"type": "boolean",
|
|
354
354
|
"value": "true"
|
|
355
355
|
},
|
|
356
356
|
{
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
"description": "Controls whether the editor should show parameter hints",
|
|
359
359
|
"heading": "Parameter Hints",
|
|
360
360
|
"id": "editor.parameterHints",
|
|
361
|
-
"type":
|
|
361
|
+
"type": "boolean",
|
|
362
362
|
"value": "true"
|
|
363
363
|
},
|
|
364
364
|
{
|
|
@@ -366,7 +366,7 @@
|
|
|
366
366
|
"description": "Controls whether the editor should automatically close brackets after opening them",
|
|
367
367
|
"heading": "Auto Closing Brackets",
|
|
368
368
|
"id": "editor.autoClosingBrackets",
|
|
369
|
-
"type":
|
|
369
|
+
"type": "string",
|
|
370
370
|
"value": "always"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
@@ -374,7 +374,7 @@
|
|
|
374
374
|
"description": "Controls whether the editor should automatically close quotes after opening them",
|
|
375
375
|
"heading": "Auto Closing Quotes",
|
|
376
376
|
"id": "editor.autoClosingQuotes",
|
|
377
|
-
"type":
|
|
377
|
+
"type": "string",
|
|
378
378
|
"value": "always"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
"description": "Controls whether the editor should type over closing quotes or brackets",
|
|
383
383
|
"heading": "Auto Closing Overtype",
|
|
384
384
|
"id": "editor.autoClosingOvertype",
|
|
385
|
-
"type":
|
|
385
|
+
"type": "string",
|
|
386
386
|
"value": "auto"
|
|
387
387
|
},
|
|
388
388
|
{
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
"description": "Controls whether the editor should remove adjacent closing quotes or brackets when deleting",
|
|
391
391
|
"heading": "Auto Closing Delete",
|
|
392
392
|
"id": "editor.autoClosingDelete",
|
|
393
|
-
"type":
|
|
393
|
+
"type": "string",
|
|
394
394
|
"value": "auto"
|
|
395
395
|
},
|
|
396
396
|
{
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
"description": "Controls whether the editor should automatically surround selections",
|
|
399
399
|
"heading": "Auto Surround",
|
|
400
400
|
"id": "editor.autoSurround",
|
|
401
|
-
"type":
|
|
401
|
+
"type": "string",
|
|
402
402
|
"value": "quotes"
|
|
403
403
|
},
|
|
404
404
|
{
|
|
@@ -406,7 +406,7 @@
|
|
|
406
406
|
"description": "Controls whether the editor should enable bracket pair colorization",
|
|
407
407
|
"heading": "Bracket Pair Colorization",
|
|
408
408
|
"id": "editor.bracketPairColorization",
|
|
409
|
-
"type":
|
|
409
|
+
"type": "boolean",
|
|
410
410
|
"value": "true"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
@@ -414,7 +414,7 @@
|
|
|
414
414
|
"description": "Controls whether the editor should render bracket pair guides",
|
|
415
415
|
"heading": "Guides",
|
|
416
416
|
"id": "editor.guides",
|
|
417
|
-
"type":
|
|
417
|
+
"type": "boolean",
|
|
418
418
|
"value": "true"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
@@ -422,7 +422,7 @@
|
|
|
422
422
|
"description": "Controls whether the editor allows moving selections via drag and drop",
|
|
423
423
|
"heading": "Drag And Drop",
|
|
424
424
|
"id": "editor.dragAndDrop",
|
|
425
|
-
"type":
|
|
425
|
+
"type": "boolean",
|
|
426
426
|
"value": "true"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
@@ -430,7 +430,7 @@
|
|
|
430
430
|
"description": "Controls whether syntax highlighting should be copied when copying text",
|
|
431
431
|
"heading": "Copy With Syntax Highlighting",
|
|
432
432
|
"id": "editor.copyWithSyntaxHighlighting",
|
|
433
|
-
"type":
|
|
433
|
+
"type": "boolean",
|
|
434
434
|
"value": "true"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
"description": "The modifier to be used to add multiple cursors with the mouse",
|
|
439
439
|
"heading": "Multi Cursor Modifier",
|
|
440
440
|
"id": "editor.multiCursorModifier",
|
|
441
|
-
"type":
|
|
441
|
+
"type": "string",
|
|
442
442
|
"value": "alt"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
"description": "Controls how the editor should handle multiple cursors when pasting",
|
|
447
447
|
"heading": "Multi Cursor Paste",
|
|
448
448
|
"id": "editor.multiCursorPaste",
|
|
449
|
-
"type":
|
|
449
|
+
"type": "string",
|
|
450
450
|
"value": "full"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
"description": "Controls whether the editor should highlight similar matches to the selection",
|
|
455
455
|
"heading": "Occurrences Highlight",
|
|
456
456
|
"id": "editor.occurrencesHighlight",
|
|
457
|
-
"type":
|
|
457
|
+
"type": "boolean",
|
|
458
458
|
"value": "true"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
"description": "Controls whether the editor should highlight similar matches to the selection",
|
|
463
463
|
"heading": "Selection Highlight",
|
|
464
464
|
"id": "editor.selectionHighlight",
|
|
465
|
-
"type":
|
|
465
|
+
"type": "boolean",
|
|
466
466
|
"value": "true"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
"description": "Controls whether the editor should enable semantic highlighting",
|
|
471
471
|
"heading": "Semantic Highlighting",
|
|
472
472
|
"id": "editor.semanticHighlighting",
|
|
473
|
-
"type":
|
|
473
|
+
"type": "boolean",
|
|
474
474
|
"value": "true"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
"description": "Overrides editor syntax highlighting colors",
|
|
479
479
|
"heading": "Token Color Customizations",
|
|
480
480
|
"id": "editor.tokenColorCustomizations",
|
|
481
|
-
"type":
|
|
481
|
+
"type": "string",
|
|
482
482
|
"value": "{}"
|
|
483
483
|
},
|
|
484
484
|
{
|
|
@@ -486,7 +486,7 @@
|
|
|
486
486
|
"description": "Overrides workbench colors",
|
|
487
487
|
"heading": "Workbench Color Customizations",
|
|
488
488
|
"id": "editor.workbenchColorCustomizations",
|
|
489
|
-
"type":
|
|
489
|
+
"type": "string",
|
|
490
490
|
"value": "{}"
|
|
491
491
|
},
|
|
492
492
|
{
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
"description": "Overrides editor colors",
|
|
495
495
|
"heading": "Editor Color Customizations",
|
|
496
496
|
"id": "editorColorCustomizations",
|
|
497
|
-
"type":
|
|
497
|
+
"type": "string",
|
|
498
498
|
"value": "{}"
|
|
499
499
|
},
|
|
500
500
|
{
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
"description": "Controls whether the diff editor shows the diff side by side or inline",
|
|
503
503
|
"heading": "Diff Editor",
|
|
504
504
|
"id": "editor.diffEditor",
|
|
505
|
-
"type":
|
|
505
|
+
"type": "boolean",
|
|
506
506
|
"value": "true"
|
|
507
507
|
},
|
|
508
508
|
{
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
"description": "Controls whether the diff editor shows the diff side by side or inline",
|
|
511
511
|
"heading": "Diff Word Wrap",
|
|
512
512
|
"id": "editor.diffWordWrap",
|
|
513
|
-
"type":
|
|
513
|
+
"type": "string",
|
|
514
514
|
"value": "inherit"
|
|
515
515
|
},
|
|
516
516
|
{
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
"description": "Controls whether the diff editor shows code lens",
|
|
519
519
|
"heading": "Diff Code Lens",
|
|
520
520
|
"id": "editor.diffCodeLens",
|
|
521
|
-
"type":
|
|
521
|
+
"type": "boolean",
|
|
522
522
|
"value": "true"
|
|
523
523
|
},
|
|
524
524
|
{
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
"description": "Controls whether the diff editor shows the diff side by side or inline",
|
|
527
527
|
"heading": "Diff Render Side By Side",
|
|
528
528
|
"id": "editor.diffRenderSideBySide",
|
|
529
|
-
"type":
|
|
529
|
+
"type": "boolean",
|
|
530
530
|
"value": "true"
|
|
531
531
|
},
|
|
532
532
|
{
|
|
@@ -534,7 +534,7 @@
|
|
|
534
534
|
"description": "Controls whether the diff editor ignores changes in whitespace",
|
|
535
535
|
"heading": "Diff Ignore Trim Whitespace",
|
|
536
536
|
"id": "editor.diffIgnoreTrimWhitespace",
|
|
537
|
-
"type":
|
|
537
|
+
"type": "boolean",
|
|
538
538
|
"value": "false"
|
|
539
539
|
},
|
|
540
540
|
{
|
|
@@ -542,7 +542,7 @@
|
|
|
542
542
|
"description": "Controls whether the diff editor shows indicators",
|
|
543
543
|
"heading": "Diff Render Indicators",
|
|
544
544
|
"id": "editor.diffRenderIndicators",
|
|
545
|
-
"type":
|
|
545
|
+
"type": "boolean",
|
|
546
546
|
"value": "true"
|
|
547
547
|
},
|
|
548
548
|
{
|
|
@@ -550,7 +550,7 @@
|
|
|
550
550
|
"description": "Controls whether the diff editor shows the overview ruler",
|
|
551
551
|
"heading": "Diff Render Overview Ruler",
|
|
552
552
|
"id": "editor.diffRenderOverviewRuler",
|
|
553
|
-
"type":
|
|
553
|
+
"type": "boolean",
|
|
554
554
|
"value": "true"
|
|
555
555
|
},
|
|
556
556
|
{
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
"description": "Controls whether the diff editor shows the revert icon in the margin",
|
|
559
559
|
"heading": "Diff Render Margin Revert Icon",
|
|
560
560
|
"id": "editor.diffRenderMarginRevertIcon",
|
|
561
|
-
"type":
|
|
561
|
+
"type": "boolean",
|
|
562
562
|
"value": "true"
|
|
563
563
|
},
|
|
564
564
|
{
|
|
@@ -566,7 +566,7 @@
|
|
|
566
566
|
"description": "Controls whether the editor is in insert mode",
|
|
567
567
|
"heading": "Insert Mode",
|
|
568
568
|
"id": "editor.insertMode",
|
|
569
|
-
"type":
|
|
569
|
+
"type": "boolean",
|
|
570
570
|
"value": "true"
|
|
571
571
|
},
|
|
572
572
|
{
|
|
@@ -574,7 +574,7 @@
|
|
|
574
574
|
"description": "Controls whether the editor is in overwrite mode",
|
|
575
575
|
"heading": "Overwrite Mode",
|
|
576
576
|
"id": "editor.overwriteMode",
|
|
577
|
-
"type":
|
|
577
|
+
"type": "boolean",
|
|
578
578
|
"value": "false"
|
|
579
579
|
},
|
|
580
580
|
{
|
|
@@ -582,7 +582,7 @@
|
|
|
582
582
|
"description": "Controls whether the editor is read only",
|
|
583
583
|
"heading": "Read Only",
|
|
584
584
|
"id": "editor.readOnly",
|
|
585
|
-
"type":
|
|
585
|
+
"type": "boolean",
|
|
586
586
|
"value": "false"
|
|
587
587
|
},
|
|
588
588
|
{
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
"description": "Controls whether the editor should run in a mode where it is optimized for screen readers",
|
|
591
591
|
"heading": "Accessibility Support",
|
|
592
592
|
"id": "editor.accessibilitySupport",
|
|
593
|
-
"type":
|
|
593
|
+
"type": "string",
|
|
594
594
|
"value": "auto"
|
|
595
595
|
},
|
|
596
596
|
{
|
|
@@ -598,7 +598,7 @@
|
|
|
598
598
|
"description": "Controls whether the editor should automatically adjust the indentation",
|
|
599
599
|
"heading": "Auto Indent",
|
|
600
600
|
"id": "editor.autoIndent",
|
|
601
|
-
"type":
|
|
601
|
+
"type": "boolean",
|
|
602
602
|
"value": "true"
|
|
603
603
|
},
|
|
604
604
|
{
|
|
@@ -606,7 +606,7 @@
|
|
|
606
606
|
"description": "Controls whether the editor should highlight matching brackets",
|
|
607
607
|
"heading": "Bracket Matching",
|
|
608
608
|
"id": "editor.bracketMatching",
|
|
609
|
-
"type":
|
|
609
|
+
"type": "boolean",
|
|
610
610
|
"value": "true"
|
|
611
611
|
},
|
|
612
612
|
{
|
|
@@ -614,7 +614,7 @@
|
|
|
614
614
|
"description": "Controls whether the editor should use centered layout",
|
|
615
615
|
"heading": "Centered Layout",
|
|
616
616
|
"id": "editor.centeredLayout",
|
|
617
|
-
"type":
|
|
617
|
+
"type": "boolean",
|
|
618
618
|
"value": "false"
|
|
619
619
|
},
|
|
620
620
|
{
|
|
@@ -622,7 +622,7 @@
|
|
|
622
622
|
"description": "Controls whether the editor should support column selection",
|
|
623
623
|
"heading": "Column Selection",
|
|
624
624
|
"id": "editor.columnSelection",
|
|
625
|
-
"type":
|
|
625
|
+
"type": "boolean",
|
|
626
626
|
"value": "false"
|
|
627
627
|
},
|
|
628
628
|
{
|
|
@@ -630,7 +630,7 @@
|
|
|
630
630
|
"description": "Controls whether the editor should show the context menu",
|
|
631
631
|
"heading": "Context Menu",
|
|
632
632
|
"id": "editor.contextmenu",
|
|
633
|
-
"type":
|
|
633
|
+
"type": "boolean",
|
|
634
634
|
"value": "true"
|
|
635
635
|
},
|
|
636
636
|
{
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
"description": "Controls whether the cursor should be animated",
|
|
639
639
|
"heading": "Cursor Smooth Caret Animation",
|
|
640
640
|
"id": "editor.cursorSmoothCaretAnimation",
|
|
641
|
-
"type":
|
|
641
|
+
"type": "string",
|
|
642
642
|
"value": "off"
|
|
643
643
|
},
|
|
644
644
|
{
|
|
@@ -646,7 +646,7 @@
|
|
|
646
646
|
"description": "Controls the number of extra characters beyond which the editor will scroll horizontally",
|
|
647
647
|
"heading": "Cursor Surrounding Lines",
|
|
648
648
|
"id": "editor.cursorSurroundingLines",
|
|
649
|
-
"type":
|
|
649
|
+
"type": "number",
|
|
650
650
|
"value": "3"
|
|
651
651
|
},
|
|
652
652
|
{
|
|
@@ -654,7 +654,7 @@
|
|
|
654
654
|
"description": "Controls when the cursor should be hidden",
|
|
655
655
|
"heading": "Cursor Surrounding Lines Style",
|
|
656
656
|
"id": "editor.cursorSurroundingLinesStyle",
|
|
657
|
-
"type":
|
|
657
|
+
"type": "string",
|
|
658
658
|
"value": "all"
|
|
659
659
|
},
|
|
660
660
|
{
|
|
@@ -662,7 +662,7 @@
|
|
|
662
662
|
"description": "Controls whether the editor should disable optimizations for monospace fonts",
|
|
663
663
|
"heading": "Disable Monospace Optimizations",
|
|
664
664
|
"id": "editor.disableMonospaceOptimizations",
|
|
665
|
-
"type":
|
|
665
|
+
"type": "boolean",
|
|
666
666
|
"value": "false"
|
|
667
667
|
},
|
|
668
668
|
{
|
|
@@ -670,7 +670,7 @@
|
|
|
670
670
|
"description": "Controls whether copying without a selection copies the current line",
|
|
671
671
|
"heading": "Empty Selection Clipboard",
|
|
672
672
|
"id": "editor.emptySelectionClipboard",
|
|
673
|
-
"type":
|
|
673
|
+
"type": "boolean",
|
|
674
674
|
"value": "true"
|
|
675
675
|
},
|
|
676
676
|
{
|
|
@@ -678,7 +678,7 @@
|
|
|
678
678
|
"description": "An extra class name to add to the editor",
|
|
679
679
|
"heading": "Extra Editor Class Name",
|
|
680
680
|
"id": "editor.extraEditorClassName",
|
|
681
|
-
"type":
|
|
681
|
+
"type": "string",
|
|
682
682
|
"value": ""
|
|
683
683
|
},
|
|
684
684
|
{
|
|
@@ -686,7 +686,7 @@
|
|
|
686
686
|
"description": "Scrolling speed multiplier when pressing Alt",
|
|
687
687
|
"heading": "Fast Scroll Sensitivity",
|
|
688
688
|
"id": "editor.fastScrollSensitivity",
|
|
689
|
-
"type":
|
|
689
|
+
"type": "number",
|
|
690
690
|
"value": "5"
|
|
691
691
|
},
|
|
692
692
|
{
|
|
@@ -694,7 +694,7 @@
|
|
|
694
694
|
"description": "Controls whether the editor should add extra space on the bottom",
|
|
695
695
|
"heading": "Find",
|
|
696
696
|
"id": "editor.find",
|
|
697
|
-
"type":
|
|
697
|
+
"type": "boolean",
|
|
698
698
|
"value": "true"
|
|
699
699
|
},
|
|
700
700
|
{
|
|
@@ -702,7 +702,7 @@
|
|
|
702
702
|
"description": "Controls whether the editor should scroll beyond the last line",
|
|
703
703
|
"heading": "Fixed Overflow Widgets",
|
|
704
704
|
"id": "editor.fixedOverflowWidgets",
|
|
705
|
-
"type":
|
|
705
|
+
"type": "boolean",
|
|
706
706
|
"value": "false"
|
|
707
707
|
},
|
|
708
708
|
{
|
|
@@ -710,7 +710,7 @@
|
|
|
710
710
|
"description": "Controls the folding strategy",
|
|
711
711
|
"heading": "Folding Strategy",
|
|
712
712
|
"id": "editor.foldingStrategy",
|
|
713
|
-
"type":
|
|
713
|
+
"type": "string",
|
|
714
714
|
"value": "auto"
|
|
715
715
|
},
|
|
716
716
|
{
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
"description": "Enables/Disables font ligatures",
|
|
719
719
|
"heading": "Font Ligatures",
|
|
720
720
|
"id": "editor.fontLigatures",
|
|
721
|
-
"type":
|
|
721
|
+
"type": "boolean",
|
|
722
722
|
"value": "false"
|
|
723
723
|
},
|
|
724
724
|
{
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
"description": "Controls whether the editor should render the vertical glyph margin",
|
|
727
727
|
"heading": "Glyph Margin",
|
|
728
728
|
"id": "editor.glyphMargin",
|
|
729
|
-
"type":
|
|
729
|
+
"type": "boolean",
|
|
730
730
|
"value": "true"
|
|
731
731
|
},
|
|
732
732
|
{
|
|
@@ -734,7 +734,7 @@
|
|
|
734
734
|
"description": "Controls the behavior the 'Go to Definition'-mouse gesture",
|
|
735
735
|
"heading": "Go To Location",
|
|
736
736
|
"id": "editor.gotoLocation",
|
|
737
|
-
"type":
|
|
737
|
+
"type": "string",
|
|
738
738
|
"value": "mouse"
|
|
739
739
|
},
|
|
740
740
|
{
|
|
@@ -742,7 +742,7 @@
|
|
|
742
742
|
"description": "Controls whether the cursor should be hidden in the overview ruler",
|
|
743
743
|
"heading": "Hide Cursor In Overview Ruler",
|
|
744
744
|
"id": "editor.hideCursorInOverviewRuler",
|
|
745
|
-
"type":
|
|
745
|
+
"type": "boolean",
|
|
746
746
|
"value": "false"
|
|
747
747
|
},
|
|
748
748
|
{
|
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
"description": "Controls whether the editor should show hover",
|
|
751
751
|
"heading": "Hover",
|
|
752
752
|
"id": "editor.hover",
|
|
753
|
-
"type":
|
|
753
|
+
"type": "boolean",
|
|
754
754
|
"value": "true"
|
|
755
755
|
},
|
|
756
756
|
{
|
|
@@ -758,7 +758,7 @@
|
|
|
758
758
|
"description": "Controls whether the editor should be in a diff editor",
|
|
759
759
|
"heading": "In Diff Editor",
|
|
760
760
|
"id": "editor.inDiffEditor",
|
|
761
|
-
"type":
|
|
761
|
+
"type": "boolean",
|
|
762
762
|
"value": "false"
|
|
763
763
|
},
|
|
764
764
|
{
|
|
@@ -766,7 +766,7 @@
|
|
|
766
766
|
"description": "The letter spacing",
|
|
767
767
|
"heading": "Letter Spacing",
|
|
768
768
|
"id": "editor.letterSpacing",
|
|
769
|
-
"type":
|
|
769
|
+
"type": "number",
|
|
770
770
|
"value": "0"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
@@ -774,7 +774,7 @@
|
|
|
774
774
|
"description": "Controls whether the editor should show the lightbulb code action",
|
|
775
775
|
"heading": "Lightbulb Enabled",
|
|
776
776
|
"id": "editor.lightbulbEnabled",
|
|
777
|
-
"type":
|
|
777
|
+
"type": "boolean",
|
|
778
778
|
"value": "true"
|
|
779
779
|
},
|
|
780
780
|
{
|
|
@@ -782,7 +782,7 @@
|
|
|
782
782
|
"description": "The width reserved for line decorations (in px)",
|
|
783
783
|
"heading": "Line Decorations Width",
|
|
784
784
|
"id": "editor.lineDecorationsWidth",
|
|
785
|
-
"type":
|
|
785
|
+
"type": "number",
|
|
786
786
|
"value": "10"
|
|
787
787
|
},
|
|
788
788
|
{
|
|
@@ -790,7 +790,7 @@
|
|
|
790
790
|
"description": "The line height",
|
|
791
791
|
"heading": "Line Height",
|
|
792
792
|
"id": "editor.lineHeight",
|
|
793
|
-
"type":
|
|
793
|
+
"type": "number",
|
|
794
794
|
"value": "0"
|
|
795
795
|
},
|
|
796
796
|
{
|
|
@@ -798,7 +798,7 @@
|
|
|
798
798
|
"description": "Controls whether the editor should highlight matching brackets",
|
|
799
799
|
"heading": "Match Brackets",
|
|
800
800
|
"id": "editor.matchBrackets",
|
|
801
|
-
"type":
|
|
801
|
+
"type": "boolean",
|
|
802
802
|
"value": "true"
|
|
803
803
|
},
|
|
804
804
|
{
|
|
@@ -806,7 +806,7 @@
|
|
|
806
806
|
"description": "A multiplier to be used on the deltaX and deltaY of mouse wheel scroll events",
|
|
807
807
|
"heading": "Mouse Wheel Scroll Sensitivity",
|
|
808
808
|
"id": "editor.mouseWheelScrollSensitivity",
|
|
809
|
-
"type":
|
|
809
|
+
"type": "number",
|
|
810
810
|
"value": "1"
|
|
811
811
|
},
|
|
812
812
|
{
|
|
@@ -814,7 +814,7 @@
|
|
|
814
814
|
"description": "Zoom the font of the editor when using mouse wheel and holding Ctrl",
|
|
815
815
|
"heading": "Mouse Wheel Zoom",
|
|
816
816
|
"id": "editor.mouseWheelZoom",
|
|
817
|
-
"type":
|
|
817
|
+
"type": "boolean",
|
|
818
818
|
"value": "false"
|
|
819
819
|
},
|
|
820
820
|
{
|
|
@@ -822,7 +822,7 @@
|
|
|
822
822
|
"description": "Merge overlapping selections",
|
|
823
823
|
"heading": "Multi Cursor Merge Overlapping",
|
|
824
824
|
"id": "editor.multiCursorMergeOverlapping",
|
|
825
|
-
"type":
|
|
825
|
+
"type": "boolean",
|
|
826
826
|
"value": "true"
|
|
827
827
|
},
|
|
828
828
|
{
|
|
@@ -830,7 +830,7 @@
|
|
|
830
830
|
"description": "Controls whether a border should be drawn around the overview ruler",
|
|
831
831
|
"heading": "Overview Ruler Border",
|
|
832
832
|
"id": "editor.overviewRulerBorder",
|
|
833
|
-
"type":
|
|
833
|
+
"type": "boolean",
|
|
834
834
|
"value": "true"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
@@ -838,7 +838,7 @@
|
|
|
838
838
|
"description": "Controls the number of decorations that can show in the overview ruler",
|
|
839
839
|
"heading": "Overview Ruler Lanes",
|
|
840
840
|
"id": "editor.overviewRulerLanes",
|
|
841
|
-
"type":
|
|
841
|
+
"type": "number",
|
|
842
842
|
"value": "3"
|
|
843
843
|
},
|
|
844
844
|
{
|
|
@@ -846,7 +846,7 @@
|
|
|
846
846
|
"description": "Controls if the peek widget should be focused by default",
|
|
847
847
|
"heading": "Peek Widget Default Focus",
|
|
848
848
|
"id": "editor.peekWidgetDefaultFocus",
|
|
849
|
-
"type":
|
|
849
|
+
"type": "string",
|
|
850
850
|
"value": "editor"
|
|
851
851
|
},
|
|
852
852
|
{
|
|
@@ -854,7 +854,7 @@
|
|
|
854
854
|
"description": "Controls the delay in milliseconds after which quick suggestions will show up",
|
|
855
855
|
"heading": "Quick Suggestions Delay",
|
|
856
856
|
"id": "editor.quickSuggestionsDelay",
|
|
857
|
-
"type":
|
|
857
|
+
"type": "number",
|
|
858
858
|
"value": "10"
|
|
859
859
|
},
|
|
860
860
|
{
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
"description": "Controls whether the editor should render the final newline as a space",
|
|
863
863
|
"heading": "Render Final Newline",
|
|
864
864
|
"id": "editor.renderFinalNewline",
|
|
865
|
-
"type":
|
|
865
|
+
"type": "boolean",
|
|
866
866
|
"value": "true"
|
|
867
867
|
},
|
|
868
868
|
{
|
|
@@ -870,7 +870,7 @@
|
|
|
870
870
|
"description": "Controls whether the editor should render validation decorations",
|
|
871
871
|
"heading": "Render Validation Decorations",
|
|
872
872
|
"id": "editor.renderValidationDecorations",
|
|
873
|
-
"type":
|
|
873
|
+
"type": "boolean",
|
|
874
874
|
"value": "true"
|
|
875
875
|
},
|
|
876
876
|
{
|
|
@@ -878,7 +878,7 @@
|
|
|
878
878
|
"description": "When revealing the cursor, a virtual padding (px) is added to the cursor, turning on a block cursor",
|
|
879
879
|
"heading": "Reveal Horizontal Right Padding",
|
|
880
880
|
"id": "editor.revealHorizontalRightPadding",
|
|
881
|
-
"type":
|
|
881
|
+
"type": "number",
|
|
882
882
|
"value": "30"
|
|
883
883
|
},
|
|
884
884
|
{
|
|
@@ -886,7 +886,7 @@
|
|
|
886
886
|
"description": "Controls whether selections should have rounded corners",
|
|
887
887
|
"heading": "Rounded Selection",
|
|
888
888
|
"id": "editor.roundedSelection",
|
|
889
|
-
"type":
|
|
889
|
+
"type": "boolean",
|
|
890
890
|
"value": "true"
|
|
891
891
|
},
|
|
892
892
|
{
|
|
@@ -894,7 +894,7 @@
|
|
|
894
894
|
"description": "Render vertical rulers at a certain number of monospace characters",
|
|
895
895
|
"heading": "Rulers",
|
|
896
896
|
"id": "editor.rulers",
|
|
897
|
-
"type":
|
|
897
|
+
"type": "string",
|
|
898
898
|
"value": "[]"
|
|
899
899
|
},
|
|
900
900
|
{
|
|
@@ -902,7 +902,7 @@
|
|
|
902
902
|
"description": "Controls how many characters the editor will scroll horizontally",
|
|
903
903
|
"heading": "Scroll Beyond Last Column",
|
|
904
904
|
"id": "editor.scrollBeyondLastColumn",
|
|
905
|
-
"type":
|
|
905
|
+
"type": "number",
|
|
906
906
|
"value": "5"
|
|
907
907
|
},
|
|
908
908
|
{
|
|
@@ -910,7 +910,7 @@
|
|
|
910
910
|
"description": "Controls the visibility and behavior of the scrollbars",
|
|
911
911
|
"heading": "Scrollbar",
|
|
912
912
|
"id": "editor.scrollbar",
|
|
913
|
-
"type":
|
|
913
|
+
"type": "string",
|
|
914
914
|
"value": "auto"
|
|
915
915
|
},
|
|
916
916
|
{
|
|
@@ -918,7 +918,7 @@
|
|
|
918
918
|
"description": "Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time",
|
|
919
919
|
"heading": "Scroll Predominant Axis",
|
|
920
920
|
"id": "editor.scrollPredominantAxis",
|
|
921
|
-
"type":
|
|
921
|
+
"type": "boolean",
|
|
922
922
|
"value": "true"
|
|
923
923
|
},
|
|
924
924
|
{
|
|
@@ -926,7 +926,7 @@
|
|
|
926
926
|
"description": "Controls whether the editor should use the CLIPBOARD selection",
|
|
927
927
|
"heading": "Selection Clipboard",
|
|
928
928
|
"id": "editor.selectionClipboard",
|
|
929
|
-
"type":
|
|
929
|
+
"type": "boolean",
|
|
930
930
|
"value": "true"
|
|
931
931
|
},
|
|
932
932
|
{
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
"description": "Editor background color",
|
|
935
935
|
"heading": "Editor background",
|
|
936
936
|
"id": "editor.background",
|
|
937
|
-
"type":
|
|
937
|
+
"type": "color",
|
|
938
938
|
"value": "#567567"
|
|
939
939
|
},
|
|
940
940
|
{
|
|
@@ -942,7 +942,7 @@
|
|
|
942
942
|
"description": "Controls fading out of unused code",
|
|
943
943
|
"heading": "Show Unused",
|
|
944
944
|
"id": "editor.showUnused",
|
|
945
|
-
"type":
|
|
945
|
+
"type": "boolean",
|
|
946
946
|
"value": "true"
|
|
947
947
|
},
|
|
948
948
|
{
|
|
@@ -950,7 +950,7 @@
|
|
|
950
950
|
"description": "Controls whether snippets are shown with other suggestions and how they are sorted",
|
|
951
951
|
"heading": "Snippet Suggestions",
|
|
952
952
|
"id": "editor.snippetSuggestions",
|
|
953
|
-
"type":
|
|
953
|
+
"type": "string",
|
|
954
954
|
"value": "bottom"
|
|
955
955
|
},
|
|
956
956
|
{
|
|
@@ -958,7 +958,7 @@
|
|
|
958
958
|
"description": "Controls whether suggestions should automatically show up while typing",
|
|
959
959
|
"heading": "Suggest",
|
|
960
960
|
"id": "editor.suggest",
|
|
961
|
-
"type":
|
|
961
|
+
"type": "boolean",
|
|
962
962
|
"value": "true"
|
|
963
963
|
},
|
|
964
964
|
{
|
|
@@ -966,7 +966,7 @@
|
|
|
966
966
|
"description": "Font size for the suggest widget",
|
|
967
967
|
"heading": "Suggest Font Size",
|
|
968
968
|
"id": "editor.suggestFontSize",
|
|
969
|
-
"type":
|
|
969
|
+
"type": "number",
|
|
970
970
|
"value": "0"
|
|
971
971
|
},
|
|
972
972
|
{
|
|
@@ -974,7 +974,7 @@
|
|
|
974
974
|
"description": "Line height for the suggest widget",
|
|
975
975
|
"heading": "Suggest Line Height",
|
|
976
976
|
"id": "editor.suggestLineHeight",
|
|
977
|
-
"type":
|
|
977
|
+
"type": "number",
|
|
978
978
|
"value": "0"
|
|
979
979
|
},
|
|
980
980
|
{
|
|
@@ -982,7 +982,7 @@
|
|
|
982
982
|
"description": "Controls how suggestions are selected when showing the suggest widget",
|
|
983
983
|
"heading": "Suggest Selection",
|
|
984
984
|
"id": "editor.suggestSelection",
|
|
985
|
-
"type":
|
|
985
|
+
"type": "string",
|
|
986
986
|
"value": "recentlyUsed"
|
|
987
987
|
},
|
|
988
988
|
{
|
|
@@ -990,7 +990,7 @@
|
|
|
990
990
|
"description": "Inserting and deleting whitespace follows tab stops",
|
|
991
991
|
"heading": "Use Tab Stops",
|
|
992
992
|
"id": "editor.useTabStops",
|
|
993
|
-
"type":
|
|
993
|
+
"type": "boolean",
|
|
994
994
|
"value": "true"
|
|
995
995
|
},
|
|
996
996
|
{
|
|
@@ -998,7 +998,7 @@
|
|
|
998
998
|
"description": "Characters that will be used as word separators when doing word related navigations or operations",
|
|
999
999
|
"heading": "Word Separators",
|
|
1000
1000
|
"id": "editor.wordSeparators",
|
|
1001
|
-
"type":
|
|
1001
|
+
"type": "string",
|
|
1002
1002
|
"value": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"
|
|
1003
1003
|
},
|
|
1004
1004
|
{
|
|
@@ -1006,7 +1006,7 @@
|
|
|
1006
1006
|
"description": "Controls the indentation of wrapped lines",
|
|
1007
1007
|
"heading": "Wrapping Indent",
|
|
1008
1008
|
"id": "editor.wrappingIndent",
|
|
1009
|
-
"type":
|
|
1009
|
+
"type": "string",
|
|
1010
1010
|
"value": "same"
|
|
1011
1011
|
}
|
|
1012
1012
|
]
|