@lvce-editor/editor-worker 19.32.1 → 19.33.1

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.
@@ -14043,7 +14043,7 @@ const renderCss = {
14043
14043
  };
14044
14044
  const renderFocus$1 = {
14045
14045
  apply: (oldState, newState) => [/* method */'setFocused', newState.focused],
14046
- isEqual: (oldState, newState) => oldState.focused === newState.focused
14046
+ isEqual: isEqual$2
14047
14047
  };
14048
14048
  const renderFocusContext = {
14049
14049
  apply: (oldState, newState) => [SetFocusContext$1, newState.uid, newState.focus, 0, newState.uid, 'Editor'],
@@ -0,0 +1,962 @@
1
+ [
2
+ {
3
+ "category": "text-editor",
4
+ "description": "The font size of the editor",
5
+ "heading": "Font Size",
6
+ "id": "editor.fontSize",
7
+ "type": 5,
8
+ "value": 15,
9
+ "minimum": 10,
10
+ "maximum": 100
11
+ },
12
+ {
13
+ "category": "text-editor",
14
+ "description": "The font family of the editor",
15
+ "heading": "Font Family",
16
+ "id": "editor.fontFamily",
17
+ "type": 2,
18
+ "value": "Fira Code"
19
+ },
20
+ {
21
+ "category": "text-editor",
22
+ "description": "Controls how lines should wrap",
23
+ "heading": "Word Wrap",
24
+ "id": "editor.wordWrap",
25
+ "options": [
26
+ {
27
+ "id": "editor.on",
28
+ "label": "On"
29
+ },
30
+ {
31
+ "id": "editor.off",
32
+ "label": "off"
33
+ }
34
+ ],
35
+ "type": 1,
36
+ "value": "off"
37
+ },
38
+ {
39
+ "category": "text-editor",
40
+ "description": "Controls the display of line numbers",
41
+ "heading": "Line Numbers",
42
+ "id": "editor.lineNumbers",
43
+ "options": [
44
+ {
45
+ "id": "editor.on",
46
+ "label": "On"
47
+ },
48
+ {
49
+ "id": "editor.off",
50
+ "label": "off"
51
+ }
52
+ ],
53
+ "type": 1,
54
+ "value": "on"
55
+ },
56
+ {
57
+ "category": "text-editor",
58
+ "description": "Controls whether the minimap is shown",
59
+ "heading": "Minimap",
60
+ "id": "editor.minimap",
61
+ "type": 3,
62
+ "value": "true"
63
+ },
64
+ {
65
+ "category": "text-editor",
66
+ "description": "Controls whether the editor will scroll beyond the last line",
67
+ "heading": "Scroll Beyond Last Line",
68
+ "id": "editor.scrollBeyondLastLine",
69
+ "type": 3,
70
+ "value": "false"
71
+ },
72
+ {
73
+ "category": "text-editor",
74
+ "description": "Controls whether the editor will scroll smoothly",
75
+ "heading": "Smooth Scrolling",
76
+ "id": "editor.smoothScrolling",
77
+ "type": 3,
78
+ "value": "true"
79
+ },
80
+ {
81
+ "category": "text-editor",
82
+ "description": "Controls how the cursor should blink",
83
+ "heading": "Cursor Blinking",
84
+ "id": "editor.cursorBlinking",
85
+ "type": 2,
86
+ "value": "blink"
87
+ },
88
+ {
89
+ "category": "text-editor",
90
+ "description": "Controls the cursor style",
91
+ "heading": "Cursor Style",
92
+ "id": "editor.cursorStyle",
93
+ "type": 2,
94
+ "value": "line"
95
+ },
96
+ {
97
+ "category": "text-editor",
98
+ "description": "Controls the width of the cursor",
99
+ "heading": "Cursor Width",
100
+ "id": "editor.cursorWidth",
101
+ "type": 5,
102
+ "value": "0"
103
+ },
104
+ {
105
+ "category": "text-editor",
106
+ "description": "The number of spaces a tab is equal to",
107
+ "heading": "Tab Size",
108
+ "id": "editor.tabSize",
109
+ "type": 5,
110
+ "value": 4,
111
+ "minimum": 1,
112
+ "maximum": 8
113
+ },
114
+ {
115
+ "category": "text-editor",
116
+ "description": "Insert spaces when pressing Tab",
117
+ "heading": "Insert Spaces",
118
+ "id": "editor.insertSpaces",
119
+ "type": 3,
120
+ "value": "true"
121
+ },
122
+ {
123
+ "category": "text-editor",
124
+ "description": "Controls whether the editor will automatically adjust the indentation",
125
+ "heading": "Detect Indentation",
126
+ "id": "editor.detectIndentation",
127
+ "type": 3,
128
+ "value": "true"
129
+ },
130
+ {
131
+ "category": "text-editor",
132
+ "description": "Remove trailing auto inserted whitespace",
133
+ "heading": "Trim Auto Whitespace",
134
+ "id": "editor.trimAutoWhitespace",
135
+ "type": 3,
136
+ "value": "true"
137
+ },
138
+ {
139
+ "category": "text-editor",
140
+ "description": "Special handling for large files to disable certain features",
141
+ "heading": "Large File Optimizations",
142
+ "id": "editor.largeFileOptimizations",
143
+ "type": 3,
144
+ "value": "true"
145
+ },
146
+ {
147
+ "category": "text-editor",
148
+ "description": "Controls how the editor should render whitespace characters",
149
+ "heading": "Render Whitespace",
150
+ "id": "editor.renderWhitespace",
151
+ "type": 2,
152
+ "value": "selection"
153
+ },
154
+ {
155
+ "category": "text-editor",
156
+ "description": "Controls whether the editor should render control characters",
157
+ "heading": "Render Control Characters",
158
+ "id": "editor.renderControlCharacters",
159
+ "type": 3,
160
+ "value": "false"
161
+ },
162
+ {
163
+ "category": "text-editor",
164
+ "description": "Controls how the editor should render the current line highlight",
165
+ "heading": "Render Line Highlight",
166
+ "id": "editor.renderLineHighlight",
167
+ "type": 2,
168
+ "value": "line"
169
+ },
170
+ {
171
+ "category": "text-editor",
172
+ "description": "Controls whether the editor shows CodeLens",
173
+ "heading": "Code Lens",
174
+ "id": "editor.codeLens",
175
+ "type": 3,
176
+ "value": "true"
177
+ },
178
+ {
179
+ "category": "text-editor",
180
+ "description": "Controls whether the editor has code folding enabled",
181
+ "heading": "Folding",
182
+ "id": "editor.folding",
183
+ "type": 3,
184
+ "value": "true"
185
+ },
186
+ {
187
+ "category": "text-editor",
188
+ "description": "Controls when the folding controls on the gutter are automatically hidden",
189
+ "heading": "Show Folding Controls",
190
+ "id": "editor.showFoldingControls",
191
+ "type": 2,
192
+ "value": "mouseover"
193
+ },
194
+ {
195
+ "category": "text-editor",
196
+ "description": "Controls whether clicking on the empty content after a folded line will unfold the line",
197
+ "heading": "Unfold On Click After End",
198
+ "id": "editor.unfoldOnClickAfterEnd",
199
+ "type": 3,
200
+ "value": "false"
201
+ },
202
+ {
203
+ "category": "text-editor",
204
+ "description": "Controls whether the editor should detect links and make them clickable",
205
+ "heading": "Links",
206
+ "id": "editor.links",
207
+ "type": 3,
208
+ "value": "true"
209
+ },
210
+ {
211
+ "category": "text-editor",
212
+ "description": "Controls whether the editor should render the inline color decorators and color picker",
213
+ "heading": "Color Decorators",
214
+ "id": "editor.colorDecorators",
215
+ "type": 3,
216
+ "value": "true"
217
+ },
218
+ {
219
+ "category": "text-editor",
220
+ "description": "Controls whether the editor should show the lightbulb code action",
221
+ "heading": "Lightbulb",
222
+ "id": "editor.lightbulb",
223
+ "type": 3,
224
+ "value": "true"
225
+ },
226
+ {
227
+ "category": "text-editor",
228
+ "description": "Code actions to be run on save",
229
+ "heading": "Code Actions On Save",
230
+ "id": "editor.codeActionsOnSave",
231
+ "type": 3,
232
+ "value": "false"
233
+ },
234
+ {
235
+ "category": "text-editor",
236
+ "description": "Format a file on paste",
237
+ "heading": "Format On Paste",
238
+ "id": "editor.formatOnPaste",
239
+ "type": 3,
240
+ "value": "false"
241
+ },
242
+ {
243
+ "category": "text-editor",
244
+ "description": "Format a file on type",
245
+ "heading": "Format On Type",
246
+ "id": "editor.formatOnType",
247
+ "type": 3,
248
+ "value": "false"
249
+ },
250
+ {
251
+ "category": "text-editor",
252
+ "description": "Controls if suggestions should be accepted on commit characters",
253
+ "heading": "Accept Suggestion On Commit Character",
254
+ "id": "editor.acceptSuggestionOnCommitCharacter",
255
+ "type": 3,
256
+ "value": "true"
257
+ },
258
+ {
259
+ "category": "text-editor",
260
+ "description": "Controls if suggestions should be accepted on Enter",
261
+ "heading": "Accept Suggestion On Enter",
262
+ "id": "editor.acceptSuggestionOnEnter",
263
+ "type": 2,
264
+ "value": "on"
265
+ },
266
+ {
267
+ "category": "text-editor",
268
+ "description": "Enables tab completions",
269
+ "heading": "Tab Completion",
270
+ "id": "editor.tabCompletion",
271
+ "type": 2,
272
+ "value": "on"
273
+ },
274
+ {
275
+ "category": "text-editor",
276
+ "description": "Controls whether completions should be computed based on words in the document",
277
+ "heading": "Word Based Suggestions",
278
+ "id": "editor.wordBasedSuggestions",
279
+ "type": 3,
280
+ "value": "true"
281
+ },
282
+ {
283
+ "category": "text-editor",
284
+ "description": "Controls whether suggestions should automatically show up when typing trigger characters",
285
+ "heading": "Suggest On Trigger Characters",
286
+ "id": "editor.suggestOnTriggerCharacters",
287
+ "type": 3,
288
+ "value": "true"
289
+ },
290
+ {
291
+ "category": "text-editor",
292
+ "description": "Controls whether suggestions should automatically show up while typing",
293
+ "heading": "Quick Suggestions",
294
+ "id": "editor.quickSuggestions",
295
+ "type": 3,
296
+ "value": "true"
297
+ },
298
+ {
299
+ "category": "text-editor",
300
+ "description": "Controls whether the editor should show parameter hints",
301
+ "heading": "Parameter Hints",
302
+ "id": "editor.parameterHints",
303
+ "type": 3,
304
+ "value": "true"
305
+ },
306
+ {
307
+ "category": "text-editor",
308
+ "description": "Controls whether the editor should automatically close brackets after opening them",
309
+ "heading": "Auto Closing Brackets",
310
+ "id": "editor.autoClosingBrackets",
311
+ "type": 2,
312
+ "value": "always"
313
+ },
314
+ {
315
+ "category": "text-editor",
316
+ "description": "Controls whether the editor should automatically close quotes after opening them",
317
+ "heading": "Auto Closing Quotes",
318
+ "id": "editor.autoClosingQuotes",
319
+ "type": 2,
320
+ "value": "always"
321
+ },
322
+ {
323
+ "category": "text-editor",
324
+ "description": "Controls whether the editor should type over closing quotes or brackets",
325
+ "heading": "Auto Closing Overtype",
326
+ "id": "editor.autoClosingOvertype",
327
+ "type": 2,
328
+ "value": "auto"
329
+ },
330
+ {
331
+ "category": "text-editor",
332
+ "description": "Controls whether the editor should remove adjacent closing quotes or brackets when deleting",
333
+ "heading": "Auto Closing Delete",
334
+ "id": "editor.autoClosingDelete",
335
+ "type": 2,
336
+ "value": "auto"
337
+ },
338
+ {
339
+ "category": "text-editor",
340
+ "description": "Controls whether the editor should automatically surround selections",
341
+ "heading": "Auto Surround",
342
+ "id": "editor.autoSurround",
343
+ "type": 2,
344
+ "value": "quotes"
345
+ },
346
+ {
347
+ "category": "text-editor",
348
+ "description": "Controls whether the editor should enable bracket pair colorization",
349
+ "heading": "Bracket Pair Colorization",
350
+ "id": "editor.bracketPairColorization",
351
+ "type": 3,
352
+ "value": "true"
353
+ },
354
+ {
355
+ "category": "text-editor",
356
+ "description": "Controls whether the editor should render bracket pair guides",
357
+ "heading": "Guides",
358
+ "id": "editor.guides",
359
+ "type": 3,
360
+ "value": "true"
361
+ },
362
+ {
363
+ "category": "text-editor",
364
+ "description": "Controls whether the editor allows moving selections via drag and drop",
365
+ "heading": "Drag And Drop",
366
+ "id": "editor.dragAndDrop",
367
+ "type": 3,
368
+ "value": "true"
369
+ },
370
+ {
371
+ "category": "text-editor",
372
+ "description": "Controls whether syntax highlighting should be copied when copying text",
373
+ "heading": "Copy With Syntax Highlighting",
374
+ "id": "editor.copyWithSyntaxHighlighting",
375
+ "type": 3,
376
+ "value": "true"
377
+ },
378
+ {
379
+ "category": "text-editor",
380
+ "description": "The modifier to be used to add multiple cursors with the mouse",
381
+ "heading": "Multi Cursor Modifier",
382
+ "id": "editor.multiCursorModifier",
383
+ "type": 2,
384
+ "value": "alt"
385
+ },
386
+ {
387
+ "category": "text-editor",
388
+ "description": "Controls how the editor should handle multiple cursors when pasting",
389
+ "heading": "Multi Cursor Paste",
390
+ "id": "editor.multiCursorPaste",
391
+ "type": 2,
392
+ "value": "full"
393
+ },
394
+ {
395
+ "category": "text-editor",
396
+ "description": "Controls whether the editor should highlight similar matches to the selection",
397
+ "heading": "Occurrences Highlight",
398
+ "id": "editor.occurrencesHighlight",
399
+ "type": 3,
400
+ "value": "true"
401
+ },
402
+ {
403
+ "category": "text-editor",
404
+ "description": "Controls whether the editor should highlight similar matches to the selection",
405
+ "heading": "Selection Highlight",
406
+ "id": "editor.selectionHighlight",
407
+ "type": 3,
408
+ "value": "true"
409
+ },
410
+ {
411
+ "category": "text-editor",
412
+ "description": "Controls whether the editor should enable semantic highlighting",
413
+ "heading": "Semantic Highlighting",
414
+ "id": "editor.semanticHighlighting",
415
+ "type": 3,
416
+ "value": "true"
417
+ },
418
+ {
419
+ "category": "text-editor",
420
+ "description": "Overrides editor syntax highlighting colors",
421
+ "heading": "Token Color Customizations",
422
+ "id": "editor.tokenColorCustomizations",
423
+ "type": 2,
424
+ "value": "{}"
425
+ },
426
+ {
427
+ "category": "text-editor",
428
+ "description": "Overrides workbench colors",
429
+ "heading": "Workbench Color Customizations",
430
+ "id": "editor.workbenchColorCustomizations",
431
+ "type": 2,
432
+ "value": "{}"
433
+ },
434
+ {
435
+ "category": "text-editor",
436
+ "description": "Overrides editor colors",
437
+ "heading": "Editor Color Customizations",
438
+ "id": "editorColorCustomizations",
439
+ "type": 2,
440
+ "value": "{}"
441
+ },
442
+ {
443
+ "category": "text-editor",
444
+ "description": "Controls whether the diff editor shows the diff side by side or inline",
445
+ "heading": "Diff Editor",
446
+ "id": "editor.diffEditor",
447
+ "type": 3,
448
+ "value": "true"
449
+ },
450
+ {
451
+ "category": "text-editor",
452
+ "description": "Controls whether the diff editor shows the diff side by side or inline",
453
+ "heading": "Diff Word Wrap",
454
+ "id": "editor.diffWordWrap",
455
+ "type": 2,
456
+ "value": "inherit"
457
+ },
458
+ {
459
+ "category": "text-editor",
460
+ "description": "Controls whether the diff editor shows code lens",
461
+ "heading": "Diff Code Lens",
462
+ "id": "editor.diffCodeLens",
463
+ "type": 3,
464
+ "value": "true"
465
+ },
466
+ {
467
+ "category": "text-editor",
468
+ "description": "Controls whether the diff editor shows the diff side by side or inline",
469
+ "heading": "Diff Render Side By Side",
470
+ "id": "editor.diffRenderSideBySide",
471
+ "type": 3,
472
+ "value": "true"
473
+ },
474
+ {
475
+ "category": "text-editor",
476
+ "description": "Controls whether the diff editor ignores changes in whitespace",
477
+ "heading": "Diff Ignore Trim Whitespace",
478
+ "id": "editor.diffIgnoreTrimWhitespace",
479
+ "type": 3,
480
+ "value": "false"
481
+ },
482
+ {
483
+ "category": "text-editor",
484
+ "description": "Controls whether the diff editor shows indicators",
485
+ "heading": "Diff Render Indicators",
486
+ "id": "editor.diffRenderIndicators",
487
+ "type": 3,
488
+ "value": "true"
489
+ },
490
+ {
491
+ "category": "text-editor",
492
+ "description": "Controls whether the diff editor shows the overview ruler",
493
+ "heading": "Diff Render Overview Ruler",
494
+ "id": "editor.diffRenderOverviewRuler",
495
+ "type": 3,
496
+ "value": "true"
497
+ },
498
+ {
499
+ "category": "text-editor",
500
+ "description": "Controls whether the diff editor shows the revert icon in the margin",
501
+ "heading": "Diff Render Margin Revert Icon",
502
+ "id": "editor.diffRenderMarginRevertIcon",
503
+ "type": 3,
504
+ "value": "true"
505
+ },
506
+ {
507
+ "category": "text-editor",
508
+ "description": "Controls whether the editor is in insert mode",
509
+ "heading": "Insert Mode",
510
+ "id": "editor.insertMode",
511
+ "type": 3,
512
+ "value": "true"
513
+ },
514
+ {
515
+ "category": "text-editor",
516
+ "description": "Controls whether the editor is in overwrite mode",
517
+ "heading": "Overwrite Mode",
518
+ "id": "editor.overwriteMode",
519
+ "type": 3,
520
+ "value": "false"
521
+ },
522
+ {
523
+ "category": "text-editor",
524
+ "description": "Controls whether the editor is read only",
525
+ "heading": "Read Only",
526
+ "id": "editor.readOnly",
527
+ "type": 3,
528
+ "value": "false"
529
+ },
530
+ {
531
+ "category": "text-editor",
532
+ "description": "Controls whether the editor should run in a mode where it is optimized for screen readers",
533
+ "heading": "Accessibility Support",
534
+ "id": "editor.accessibilitySupport",
535
+ "type": 2,
536
+ "value": "auto"
537
+ },
538
+ {
539
+ "category": "text-editor",
540
+ "description": "Controls whether the editor should automatically adjust the indentation",
541
+ "heading": "Auto Indent",
542
+ "id": "editor.autoIndent",
543
+ "type": 3,
544
+ "value": "true"
545
+ },
546
+ {
547
+ "category": "text-editor",
548
+ "description": "Controls whether the editor should highlight matching brackets",
549
+ "heading": "Bracket Matching",
550
+ "id": "editor.bracketMatching",
551
+ "type": 3,
552
+ "value": "true"
553
+ },
554
+ {
555
+ "category": "text-editor",
556
+ "description": "Controls whether the editor should use centered layout",
557
+ "heading": "Centered Layout",
558
+ "id": "editor.centeredLayout",
559
+ "type": 3,
560
+ "value": "false"
561
+ },
562
+ {
563
+ "category": "text-editor",
564
+ "description": "Controls whether the editor should support column selection",
565
+ "heading": "Column Selection",
566
+ "id": "editor.columnSelection",
567
+ "type": 3,
568
+ "value": "false"
569
+ },
570
+ {
571
+ "category": "text-editor",
572
+ "description": "Controls whether the editor should show the context menu",
573
+ "heading": "Context Menu",
574
+ "id": "editor.contextmenu",
575
+ "type": 3,
576
+ "value": "true"
577
+ },
578
+ {
579
+ "category": "text-editor",
580
+ "description": "Controls whether the cursor should be animated",
581
+ "heading": "Cursor Smooth Caret Animation",
582
+ "id": "editor.cursorSmoothCaretAnimation",
583
+ "type": 2,
584
+ "value": "off"
585
+ },
586
+ {
587
+ "category": "text-editor",
588
+ "description": "Controls the number of extra characters beyond which the editor will scroll horizontally",
589
+ "heading": "Cursor Surrounding Lines",
590
+ "id": "editor.cursorSurroundingLines",
591
+ "type": 5,
592
+ "value": "3"
593
+ },
594
+ {
595
+ "category": "text-editor",
596
+ "description": "Controls when the cursor should be hidden",
597
+ "heading": "Cursor Surrounding Lines Style",
598
+ "id": "editor.cursorSurroundingLinesStyle",
599
+ "type": 2,
600
+ "value": "all"
601
+ },
602
+ {
603
+ "category": "text-editor",
604
+ "description": "Controls whether the editor should disable optimizations for monospace fonts",
605
+ "heading": "Disable Monospace Optimizations",
606
+ "id": "editor.disableMonospaceOptimizations",
607
+ "type": 3,
608
+ "value": "false"
609
+ },
610
+ {
611
+ "category": "text-editor",
612
+ "description": "Controls whether copying without a selection copies the current line",
613
+ "heading": "Empty Selection Clipboard",
614
+ "id": "editor.emptySelectionClipboard",
615
+ "type": 3,
616
+ "value": "true"
617
+ },
618
+ {
619
+ "category": "text-editor",
620
+ "description": "An extra class name to add to the editor",
621
+ "heading": "Extra Editor Class Name",
622
+ "id": "editor.extraEditorClassName",
623
+ "type": 2,
624
+ "value": ""
625
+ },
626
+ {
627
+ "category": "text-editor",
628
+ "description": "Scrolling speed multiplier when pressing Alt",
629
+ "heading": "Fast Scroll Sensitivity",
630
+ "id": "editor.fastScrollSensitivity",
631
+ "type": 5,
632
+ "value": "5"
633
+ },
634
+ {
635
+ "category": "text-editor",
636
+ "description": "Controls whether the editor should add extra space on the bottom",
637
+ "heading": "Find",
638
+ "id": "editor.find",
639
+ "type": 3,
640
+ "value": "true"
641
+ },
642
+ {
643
+ "category": "text-editor",
644
+ "description": "Controls whether the editor should scroll beyond the last line",
645
+ "heading": "Fixed Overflow Widgets",
646
+ "id": "editor.fixedOverflowWidgets",
647
+ "type": 3,
648
+ "value": "false"
649
+ },
650
+ {
651
+ "category": "text-editor",
652
+ "description": "Controls the folding strategy",
653
+ "heading": "Folding Strategy",
654
+ "id": "editor.foldingStrategy",
655
+ "type": 2,
656
+ "value": "auto"
657
+ },
658
+ {
659
+ "category": "text-editor",
660
+ "description": "Enables/Disables font ligatures",
661
+ "heading": "Font Ligatures",
662
+ "id": "editor.fontLigatures",
663
+ "type": 3,
664
+ "value": "false"
665
+ },
666
+ {
667
+ "category": "text-editor",
668
+ "description": "Controls whether the editor should render the vertical glyph margin",
669
+ "heading": "Glyph Margin",
670
+ "id": "editor.glyphMargin",
671
+ "type": 3,
672
+ "value": "true"
673
+ },
674
+ {
675
+ "category": "text-editor",
676
+ "description": "Controls the behavior the 'Go to Definition'-mouse gesture",
677
+ "heading": "Go To Location",
678
+ "id": "editor.gotoLocation",
679
+ "type": 2,
680
+ "value": "mouse"
681
+ },
682
+ {
683
+ "category": "text-editor",
684
+ "description": "Controls whether the cursor should be hidden in the overview ruler",
685
+ "heading": "Hide Cursor In Overview Ruler",
686
+ "id": "editor.hideCursorInOverviewRuler",
687
+ "type": 3,
688
+ "value": "false"
689
+ },
690
+ {
691
+ "category": "text-editor",
692
+ "description": "Controls whether the editor should show hover",
693
+ "heading": "Hover",
694
+ "id": "editor.hover",
695
+ "type": 3,
696
+ "value": "true"
697
+ },
698
+ {
699
+ "category": "text-editor",
700
+ "description": "Controls whether the editor should be in a diff editor",
701
+ "heading": "In Diff Editor",
702
+ "id": "editor.inDiffEditor",
703
+ "type": 3,
704
+ "value": "false"
705
+ },
706
+ {
707
+ "category": "text-editor",
708
+ "description": "The letter spacing",
709
+ "heading": "Letter Spacing",
710
+ "id": "editor.letterSpacing",
711
+ "type": 5,
712
+ "value": "0"
713
+ },
714
+ {
715
+ "category": "text-editor",
716
+ "description": "Controls whether the editor should show the lightbulb code action",
717
+ "heading": "Lightbulb Enabled",
718
+ "id": "editor.lightbulbEnabled",
719
+ "type": 3,
720
+ "value": "true"
721
+ },
722
+ {
723
+ "category": "text-editor",
724
+ "description": "The width reserved for line decorations (in px)",
725
+ "heading": "Line Decorations Width",
726
+ "id": "editor.lineDecorationsWidth",
727
+ "type": 5,
728
+ "value": "10"
729
+ },
730
+ {
731
+ "category": "text-editor",
732
+ "description": "The line height",
733
+ "heading": "Line Height",
734
+ "id": "editor.lineHeight",
735
+ "type": 5,
736
+ "value": "0"
737
+ },
738
+ {
739
+ "category": "text-editor",
740
+ "description": "Controls whether the editor should highlight matching brackets",
741
+ "heading": "Match Brackets",
742
+ "id": "editor.matchBrackets",
743
+ "type": 3,
744
+ "value": "true"
745
+ },
746
+ {
747
+ "category": "text-editor",
748
+ "description": "Controls whether the minimap is shown",
749
+ "heading": "Minimap Enabled",
750
+ "id": "editor.minimapEnabled",
751
+ "type": 3,
752
+ "value": "true"
753
+ },
754
+ {
755
+ "category": "text-editor",
756
+ "description": "A multiplier to be used on the deltaX and deltaY of mouse wheel scroll events",
757
+ "heading": "Mouse Wheel Scroll Sensitivity",
758
+ "id": "editor.mouseWheelScrollSensitivity",
759
+ "type": 5,
760
+ "value": "1"
761
+ },
762
+ {
763
+ "category": "text-editor",
764
+ "description": "Zoom the font of the editor when using mouse wheel and holding Ctrl",
765
+ "heading": "Mouse Wheel Zoom",
766
+ "id": "editor.mouseWheelZoom",
767
+ "type": 3,
768
+ "value": "false"
769
+ },
770
+ {
771
+ "category": "text-editor",
772
+ "description": "Merge overlapping selections",
773
+ "heading": "Multi Cursor Merge Overlapping",
774
+ "id": "editor.multiCursorMergeOverlapping",
775
+ "type": 3,
776
+ "value": "true"
777
+ },
778
+ {
779
+ "category": "text-editor",
780
+ "description": "Controls whether a border should be drawn around the overview ruler",
781
+ "heading": "Overview Ruler Border",
782
+ "id": "editor.overviewRulerBorder",
783
+ "type": 3,
784
+ "value": "true"
785
+ },
786
+ {
787
+ "category": "text-editor",
788
+ "description": "Controls the number of decorations that can show in the overview ruler",
789
+ "heading": "Overview Ruler Lanes",
790
+ "id": "editor.overviewRulerLanes",
791
+ "type": 5,
792
+ "value": "3"
793
+ },
794
+ {
795
+ "category": "text-editor",
796
+ "description": "Controls if the peek widget should be focused by default",
797
+ "heading": "Peek Widget Default Focus",
798
+ "id": "editor.peekWidgetDefaultFocus",
799
+ "type": 2,
800
+ "value": "editor"
801
+ },
802
+ {
803
+ "category": "text-editor",
804
+ "description": "Controls the delay in milliseconds after which quick suggestions will show up",
805
+ "heading": "Quick Suggestions Delay",
806
+ "id": "editor.quickSuggestionsDelay",
807
+ "type": 5,
808
+ "value": "10"
809
+ },
810
+ {
811
+ "category": "text-editor",
812
+ "description": "Controls whether the editor should render the final newline as a space",
813
+ "heading": "Render Final Newline",
814
+ "id": "editor.renderFinalNewline",
815
+ "type": 3,
816
+ "value": "true"
817
+ },
818
+ {
819
+ "category": "text-editor",
820
+ "description": "Controls whether the editor should render validation decorations",
821
+ "heading": "Render Validation Decorations",
822
+ "id": "editor.renderValidationDecorations",
823
+ "type": 3,
824
+ "value": "true"
825
+ },
826
+ {
827
+ "category": "text-editor",
828
+ "description": "When revealing the cursor, a virtual padding (px) is added to the cursor, turning on a block cursor",
829
+ "heading": "Reveal Horizontal Right Padding",
830
+ "id": "editor.revealHorizontalRightPadding",
831
+ "type": 5,
832
+ "value": "30"
833
+ },
834
+ {
835
+ "category": "text-editor",
836
+ "description": "Controls whether selections should have rounded corners",
837
+ "heading": "Rounded Selection",
838
+ "id": "editor.roundedSelection",
839
+ "type": 3,
840
+ "value": "true"
841
+ },
842
+ {
843
+ "category": "text-editor",
844
+ "description": "Render vertical rulers at a certain number of monospace characters",
845
+ "heading": "Rulers",
846
+ "id": "editor.rulers",
847
+ "type": 2,
848
+ "value": "[]"
849
+ },
850
+ {
851
+ "category": "text-editor",
852
+ "description": "Controls how many characters the editor will scroll horizontally",
853
+ "heading": "Scroll Beyond Last Column",
854
+ "id": "editor.scrollBeyondLastColumn",
855
+ "type": 5,
856
+ "value": "5"
857
+ },
858
+ {
859
+ "category": "text-editor",
860
+ "description": "Controls the visibility and behavior of the scrollbars",
861
+ "heading": "Scrollbar",
862
+ "id": "editor.scrollbar",
863
+ "type": 2,
864
+ "value": "auto"
865
+ },
866
+ {
867
+ "category": "text-editor",
868
+ "description": "Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time",
869
+ "heading": "Scroll Predominant Axis",
870
+ "id": "editor.scrollPredominantAxis",
871
+ "type": 3,
872
+ "value": "true"
873
+ },
874
+ {
875
+ "category": "text-editor",
876
+ "description": "Controls whether the editor should use the CLIPBOARD selection",
877
+ "heading": "Selection Clipboard",
878
+ "id": "editor.selectionClipboard",
879
+ "type": 3,
880
+ "value": "true"
881
+ },
882
+ {
883
+ "category": "text-editor",
884
+ "description": "Editor background color",
885
+ "heading": "Editor background",
886
+ "id": "editor.background",
887
+ "type": 6,
888
+ "value": "#567567"
889
+ },
890
+ {
891
+ "category": "text-editor",
892
+ "description": "Controls fading out of unused code",
893
+ "heading": "Show Unused",
894
+ "id": "editor.showUnused",
895
+ "type": 3,
896
+ "value": "true"
897
+ },
898
+ {
899
+ "category": "text-editor",
900
+ "description": "Controls whether snippets are shown with other suggestions and how they are sorted",
901
+ "heading": "Snippet Suggestions",
902
+ "id": "editor.snippetSuggestions",
903
+ "type": 2,
904
+ "value": "bottom"
905
+ },
906
+ {
907
+ "category": "text-editor",
908
+ "description": "Controls whether suggestions should automatically show up while typing",
909
+ "heading": "Suggest",
910
+ "id": "editor.suggest",
911
+ "type": 3,
912
+ "value": "true"
913
+ },
914
+ {
915
+ "category": "text-editor",
916
+ "description": "Font size for the suggest widget",
917
+ "heading": "Suggest Font Size",
918
+ "id": "editor.suggestFontSize",
919
+ "type": 5,
920
+ "value": "0"
921
+ },
922
+ {
923
+ "category": "text-editor",
924
+ "description": "Line height for the suggest widget",
925
+ "heading": "Suggest Line Height",
926
+ "id": "editor.suggestLineHeight",
927
+ "type": 5,
928
+ "value": "0"
929
+ },
930
+ {
931
+ "category": "text-editor",
932
+ "description": "Controls how suggestions are selected when showing the suggest widget",
933
+ "heading": "Suggest Selection",
934
+ "id": "editor.suggestSelection",
935
+ "type": 2,
936
+ "value": "recentlyUsed"
937
+ },
938
+ {
939
+ "category": "text-editor",
940
+ "description": "Inserting and deleting whitespace follows tab stops",
941
+ "heading": "Use Tab Stops",
942
+ "id": "editor.useTabStops",
943
+ "type": 3,
944
+ "value": "true"
945
+ },
946
+ {
947
+ "category": "text-editor",
948
+ "description": "Characters that will be used as word separators when doing word related navigations or operations",
949
+ "heading": "Word Separators",
950
+ "id": "editor.wordSeparators",
951
+ "type": 2,
952
+ "value": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"
953
+ },
954
+ {
955
+ "category": "text-editor",
956
+ "description": "Controls the indentation of wrapped lines",
957
+ "heading": "Wrapping Indent",
958
+ "id": "editor.wrappingIndent",
959
+ "type": 2,
960
+ "value": "same"
961
+ }
962
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/editor-worker",
3
- "version": "19.32.1",
3
+ "version": "19.33.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git@github.com:lvce-editor/editor-worker.git"