-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathresourceLanguage.json
4296 lines (4296 loc) · 169 KB
/
resourceLanguage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"properties": {
"editor.tabSize": {
"type": "number",
"default": 4,
"minimum": 1,
"markdownDescription": "The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.",
"defaultDefaultValue": 4,
"scope": 5,
"restricted": false
},
"editor.indentSize": {
"anyOf": [
{
"type": "string",
"enum": [
"tabSize"
]
},
{
"type": "number",
"minimum": 1
}
],
"default": "tabSize",
"markdownDescription": "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.",
"defaultDefaultValue": "tabSize",
"scope": 5,
"restricted": false
},
"editor.insertSpaces": {
"type": "boolean",
"default": true,
"markdownDescription": "Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.detectIndentation": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.trimAutoWhitespace": {
"type": "boolean",
"default": true,
"description": "Remove trailing auto inserted whitespace.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.largeFileOptimizations": {
"type": "boolean",
"default": true,
"description": "Special handling for large files to disable certain memory intensive features.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.wordBasedSuggestions": {
"type": "boolean",
"default": true,
"description": "Controls whether completions should be computed based on words in the document.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.wordBasedSuggestionsMode": {
"enum": [
"currentDocument",
"matchingDocuments",
"allDocuments"
],
"default": "matchingDocuments",
"enumDescriptions": [
"Only suggest words from the active document.",
"Suggest words from all open documents of the same language.",
"Suggest words from all open documents."
],
"description": "Controls from which documents word based completions are computed.",
"defaultDefaultValue": "matchingDocuments",
"scope": 5,
"restricted": false
},
"editor.semanticHighlighting.enabled": {
"enum": [
true,
false,
"configuredByTheme"
],
"enumDescriptions": [
"Semantic highlighting enabled for all color themes.",
"Semantic highlighting disabled for all color themes.",
"Semantic highlighting is configured by the current color theme's `semanticHighlighting` setting."
],
"default": "configuredByTheme",
"description": "Controls whether the semanticHighlighting is shown for the languages that support it.",
"defaultDefaultValue": "configuredByTheme",
"scope": 5,
"restricted": false
},
"editor.stablePeek": {
"type": "boolean",
"default": false,
"markdownDescription": "Keep peek editors open even when double-clicking their content or when hitting `Escape`.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.maxTokenizationLineLength": {
"type": "integer",
"default": 20000,
"description": "Lines above this length will not be tokenized for performance reasons",
"defaultDefaultValue": 20000,
"scope": 5,
"restricted": false
},
"editor.experimental.asyncTokenization": {
"type": "boolean",
"default": false,
"description": "Controls whether the tokenization should happen asynchronously on a web worker.",
"tags": [
"experimental"
],
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.experimental.asyncTokenizationLogging": {
"type": "boolean",
"default": false,
"description": "Controls whether async tokenization should be logged. For debugging only.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.experimental.asyncTokenizationVerification": {
"type": "boolean",
"default": false,
"description": "Controls whether async tokenization should be verified against legacy background tokenization. Might slow down tokenization. For debugging only.",
"tags": [
"experimental"
],
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.language.brackets": {
"type": [
"array",
"null"
],
"default": null,
"description": "Defines the bracket symbols that increase or decrease the indentation.",
"items": {
"type": "array",
"items": [
{
"type": "string",
"description": "The opening bracket character or string sequence."
},
{
"type": "string",
"description": "The closing bracket character or string sequence."
}
]
},
"defaultDefaultValue": null,
"scope": 5,
"restricted": false
},
"editor.language.colorizedBracketPairs": {
"type": [
"array",
"null"
],
"default": null,
"description": "Defines the bracket pairs that are colorized by their nesting level if bracket pair colorization is enabled.",
"items": {
"type": "array",
"items": [
{
"type": "string",
"description": "The opening bracket character or string sequence."
},
{
"type": "string",
"description": "The closing bracket character or string sequence."
}
]
},
"defaultDefaultValue": null,
"scope": 5,
"restricted": false
},
"diffEditor.maxComputationTime": {
"type": "number",
"default": 5000,
"description": "Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout.",
"defaultDefaultValue": 5000,
"scope": 5,
"restricted": false
},
"diffEditor.maxFileSize": {
"type": "number",
"default": 50,
"description": "Maximum file size in MB for which to compute diffs. Use 0 for no limit.",
"defaultDefaultValue": 50,
"scope": 5,
"restricted": false
},
"diffEditor.renderSideBySide": {
"type": "boolean",
"default": true,
"description": "Controls whether the diff editor shows the diff side by side or inline.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.renderSideBySideInlineBreakpoint": {
"type": "number",
"default": 900,
"description": "If the diff editor width is smaller than this value, the inline view is used.",
"defaultDefaultValue": 900,
"scope": 5,
"restricted": false
},
"diffEditor.useInlineViewWhenSpaceIsLimited": {
"type": "boolean",
"default": true,
"description": "If enabled and the editor width is too small, the inline view is used.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.renderMarginRevertIcon": {
"type": "boolean",
"default": true,
"description": "When enabled, the diff editor shows arrows in its glyph margin to revert changes.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.ignoreTrimWhitespace": {
"type": "boolean",
"default": true,
"description": "When enabled, the diff editor ignores changes in leading or trailing whitespace.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.renderIndicators": {
"type": "boolean",
"default": true,
"description": "Controls whether the diff editor shows +/- indicators for added/removed changes.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.codeLens": {
"type": "boolean",
"default": false,
"description": "Controls whether the editor shows CodeLens.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"diffEditor.wordWrap": {
"type": "string",
"enum": [
"off",
"on",
"inherit"
],
"default": "inherit",
"markdownEnumDescriptions": [
"Lines will never wrap.",
"Lines will wrap at the viewport width.",
"Lines will wrap according to the `#editor.wordWrap#` setting."
],
"defaultDefaultValue": "inherit",
"scope": 5,
"restricted": false
},
"diffEditor.diffAlgorithm": {
"type": "string",
"enum": [
"legacy",
"advanced"
],
"default": "advanced",
"markdownEnumDescriptions": [
"Uses the legacy diffing algorithm.",
"Uses the advanced diffing algorithm."
],
"tags": [
"experimental"
],
"defaultDefaultValue": "advanced",
"scope": 5,
"restricted": false
},
"diffEditor.hideUnchangedRegions.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether the diff editor shows unchanged regions. Only works when `#diffEditor.experimental.useVersion2#` is set.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"diffEditor.hideUnchangedRegions.revealLineCount": {
"type": "integer",
"default": 20,
"markdownDescription": "Controls how many lines are used for unchanged regions. Only works when `#diffEditor.experimental.useVersion2#` is set.",
"minimum": 1,
"defaultDefaultValue": 20,
"scope": 5,
"restricted": false
},
"diffEditor.hideUnchangedRegions.minimumLineCount": {
"type": "integer",
"default": 3,
"markdownDescription": "Controls how many lines are used as a minimum for unchanged regions. Only works when `#diffEditor.experimental.useVersion2#` is set.",
"minimum": 1,
"defaultDefaultValue": 3,
"scope": 5,
"restricted": false
},
"diffEditor.hideUnchangedRegions.contextLineCount": {
"type": "integer",
"default": 3,
"markdownDescription": "Controls how many lines are used as context when comparing unchanged regions. Only works when `#diffEditor.experimental.useVersion2#` is set.",
"minimum": 1,
"defaultDefaultValue": 3,
"scope": 5,
"restricted": false
},
"diffEditor.experimental.showMoves": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether the diff editor should show detected code moves. Only works when `#diffEditor.experimental.useVersion2#` is set.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"diffEditor.experimental.useVersion2": {
"type": "boolean",
"default": true,
"description": "Controls whether the diff editor uses the new or the old implementation.",
"tags": [
"experimental"
],
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"diffEditor.experimental.showEmptyDecorations": {
"type": "boolean",
"default": true,
"description": "Controls whether the diff editor shows empty decorations to see where characters got inserted or deleted.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.acceptSuggestionOnCommitCharacter": {
"markdownDescription": "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.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.acceptSuggestionOnEnter": {
"markdownEnumDescriptions": [
"",
"Only accept a suggestion with `Enter` when it makes a textual change.",
""
],
"markdownDescription": "Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.",
"type": "string",
"enum": [
"on",
"smart",
"off"
],
"default": "on",
"defaultDefaultValue": "on",
"scope": 5,
"restricted": false
},
"editor.accessibilitySupport": {
"type": "string",
"enum": [
"auto",
"on",
"off"
],
"enumDescriptions": [
"Use platform APIs to detect when a Screen Reader is attached",
"Optimize for usage with a Screen Reader",
"Assume a screen reader is not attached"
],
"default": "auto",
"tags": [
"accessibility"
],
"description": "Controls if the UI should run in a mode where it is optimized for screen readers.",
"defaultDefaultValue": "auto",
"scope": 5,
"restricted": false
},
"editor.accessibilityPageSize": {
"description": "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.",
"tags": [
"accessibility"
],
"type": "integer",
"default": 10,
"minimum": 1,
"maximum": 1073741824,
"defaultDefaultValue": 10,
"scope": 5,
"restricted": false
},
"editor.autoClosingBrackets": {
"enumDescriptions": [
"",
"Use language configurations to determine when to autoclose brackets.",
"Autoclose brackets only when the cursor is to the left of whitespace.",
""
],
"description": "Controls whether the editor should automatically close brackets after the user adds an opening bracket.",
"type": "string",
"enum": [
"always",
"languageDefined",
"beforeWhitespace",
"never"
],
"default": "languageDefined",
"defaultDefaultValue": "languageDefined",
"scope": 5,
"restricted": false
},
"editor.screenReaderAnnounceInlineSuggestion": {
"description": "Control whether inline suggestions are announced by a screen reader.",
"tags": [
"accessibility"
],
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.autoClosingDelete": {
"enumDescriptions": [
"",
"Remove adjacent closing quotes or brackets only if they were automatically inserted.",
""
],
"description": "Controls whether the editor should remove adjacent closing quotes or brackets when deleting.",
"type": "string",
"enum": [
"always",
"auto",
"never"
],
"default": "auto",
"defaultDefaultValue": "auto",
"scope": 5,
"restricted": false
},
"editor.autoClosingOvertype": {
"enumDescriptions": [
"",
"Type over closing quotes or brackets only if they were automatically inserted.",
""
],
"description": "Controls whether the editor should type over closing quotes or brackets.",
"type": "string",
"enum": [
"always",
"auto",
"never"
],
"default": "auto",
"defaultDefaultValue": "auto",
"scope": 5,
"restricted": false
},
"editor.autoClosingQuotes": {
"enumDescriptions": [
"",
"Use language configurations to determine when to autoclose quotes.",
"Autoclose quotes only when the cursor is to the left of whitespace.",
""
],
"description": "Controls whether the editor should automatically close quotes after the user adds an opening quote.",
"type": "string",
"enum": [
"always",
"languageDefined",
"beforeWhitespace",
"never"
],
"default": "languageDefined",
"defaultDefaultValue": "languageDefined",
"scope": 5,
"restricted": false
},
"editor.autoIndent": {
"enumDescriptions": [
"The editor will not insert indentation automatically.",
"The editor will keep the current line's indentation.",
"The editor will keep the current line's indentation and honor language defined brackets.",
"The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages.",
"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."
],
"description": "Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.",
"type": "string",
"enum": [
"none",
"keep",
"brackets",
"advanced",
"full"
],
"default": "full",
"defaultDefaultValue": "full",
"scope": 5,
"restricted": false
},
"editor.autoSurround": {
"enumDescriptions": [
"Use language configurations to determine when to automatically surround selections.",
"Surround with quotes but not brackets.",
"Surround with brackets but not quotes.",
""
],
"description": "Controls whether the editor should automatically surround selections when typing quotes or brackets.",
"type": "string",
"enum": [
"languageDefined",
"quotes",
"brackets",
"never"
],
"default": "languageDefined",
"defaultDefaultValue": "languageDefined",
"scope": 5,
"restricted": false
},
"editor.bracketPairColorization.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether bracket pair colorization is enabled or not. Use `#workbench.colorCustomizations#` to override the bracket highlight colors.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.bracketPairColorization.independentColorPoolPerBracketType": {
"type": "boolean",
"default": false,
"description": "Controls whether each bracket type has its own independent color pool.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.guides.bracketPairs": {
"type": [
"boolean",
"string"
],
"enum": [
true,
"active",
false
],
"enumDescriptions": [
"Enables bracket pair guides.",
"Enables bracket pair guides only for the active bracket pair.",
"Disables bracket pair guides."
],
"default": false,
"description": "Controls whether bracket pair guides are enabled or not.",
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.guides.bracketPairsHorizontal": {
"type": [
"boolean",
"string"
],
"enum": [
true,
"active",
false
],
"enumDescriptions": [
"Enables horizontal guides as addition to vertical bracket pair guides.",
"Enables horizontal guides only for the active bracket pair.",
"Disables horizontal bracket pair guides."
],
"default": "active",
"description": "Controls whether horizontal bracket pair guides are enabled or not.",
"defaultDefaultValue": "active",
"scope": 5,
"restricted": false
},
"editor.guides.highlightActiveBracketPair": {
"type": "boolean",
"default": true,
"description": "Controls whether the editor should highlight the active bracket pair.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.guides.indentation": {
"type": "boolean",
"default": true,
"description": "Controls whether the editor should render indent guides.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.guides.highlightActiveIndentation": {
"type": [
"boolean",
"string"
],
"enum": [
true,
"always",
false
],
"enumDescriptions": [
"Highlights the active indent guide.",
"Highlights the active indent guide even if bracket guides are highlighted.",
"Do not highlight the active indent guide."
],
"default": true,
"description": "Controls whether the editor should highlight the active indent guide.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.codeLens": {
"description": "Controls whether the editor shows CodeLens.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.codeLensFontFamily": {
"description": "Controls the font family for CodeLens.",
"type": "string",
"default": "",
"defaultDefaultValue": "",
"scope": 5,
"restricted": false
},
"editor.codeLensFontSize": {
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 100,
"markdownDescription": "Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used.",
"defaultDefaultValue": 0,
"scope": 5,
"restricted": false
},
"editor.colorDecorators": {
"description": "Controls whether the editor should render the inline color decorators and color picker.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.colorDecoratorsLimit": {
"markdownDescription": "Controls the max number of color decorators that can be rendered in an editor at once.",
"type": "integer",
"default": 500,
"minimum": 1,
"maximum": 1000000,
"defaultDefaultValue": 500,
"scope": 5,
"restricted": false
},
"editor.columnSelection": {
"description": "Enable that the selection with the mouse and keys is doing column selection.",
"type": "boolean",
"default": false,
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.comments.insertSpace": {
"type": "boolean",
"default": true,
"description": "Controls whether a space character is inserted when commenting.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.comments.ignoreEmptyLines": {
"type": "boolean",
"default": true,
"description": "Controls if empty lines should be ignored with toggle, add or remove actions for line comments.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.copyWithSyntaxHighlighting": {
"description": "Controls whether syntax highlighting should be copied into the clipboard.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.cursorBlinking": {
"description": "Control the cursor animation style.",
"type": "string",
"enum": [
"blink",
"smooth",
"phase",
"expand",
"solid"
],
"default": "blink",
"defaultDefaultValue": "blink",
"scope": 5,
"restricted": false
},
"editor.cursorSmoothCaretAnimation": {
"enumDescriptions": [
"Smooth caret animation is disabled.",
"Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture.",
"Smooth caret animation is always enabled."
],
"description": "Controls whether the smooth caret animation should be enabled.",
"type": "string",
"enum": [
"off",
"explicit",
"on"
],
"default": "off",
"defaultDefaultValue": "off",
"scope": 5,
"restricted": false
},
"editor.cursorStyle": {
"description": "Controls the cursor style.",
"type": "string",
"enum": [
"line",
"block",
"underline",
"line-thin",
"block-outline",
"underline-thin"
],
"default": "line",
"defaultDefaultValue": "line",
"scope": 5,
"restricted": false
},
"editor.cursorSurroundingLines": {
"description": "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.",
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 1073741824,
"defaultDefaultValue": 0,
"scope": 5,
"restricted": false
},
"editor.cursorSurroundingLinesStyle": {
"enumDescriptions": [
"`cursorSurroundingLines` is enforced only when triggered via the keyboard or API.",
"`cursorSurroundingLines` is enforced always."
],
"description": "Controls when `cursorSurroundingLines` should be enforced.",
"type": "string",
"enum": [
"default",
"all"
],
"default": "default",
"defaultDefaultValue": "default",
"scope": 5,
"restricted": false
},
"editor.cursorWidth": {
"markdownDescription": "Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`.",
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 1073741824,
"defaultDefaultValue": 0,
"scope": 5,
"restricted": false
},
"editor.dragAndDrop": {
"description": "Controls whether the editor should allow moving selections via drag and drop.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.dropIntoEditor.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "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).",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.dropIntoEditor.showDropSelector": {
"type": "string",
"markdownDescription": "Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped.",
"enum": [
"afterDrop",
"never"
],
"enumDescriptions": [
"Show the drop selector widget after a file is dropped into the editor.",
"Never show the drop selector widget. Instead the default drop provider is always used."
],
"default": "afterDrop",
"defaultDefaultValue": "afterDrop",
"scope": 5,
"restricted": false
},
"editor.emptySelectionClipboard": {
"description": "Controls whether copying without a selection copies the current line.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.experimentalWhitespaceRendering": {
"enumDescriptions": [
"Use a new rendering method with svgs.",
"Use a new rendering method with font characters.",
"Use the stable rendering method."
],
"description": "Controls whether whitespace is rendered with a new, experimental method.",
"type": "string",
"enum": [
"svg",
"font",
"off"
],
"default": "svg",
"defaultDefaultValue": "svg",
"scope": 5,
"restricted": false
},
"editor.fastScrollSensitivity": {
"markdownDescription": "Scrolling speed multiplier when pressing `Alt`.",
"type": "number",
"default": 5,
"defaultDefaultValue": 5,
"scope": 5,
"restricted": false
},
"editor.find.cursorMoveOnType": {
"type": "boolean",
"default": true,
"description": "Controls whether the cursor should jump to find matches while typing.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.find.seedSearchStringFromSelection": {
"type": "string",
"enum": [
"never",
"always",
"selection"
],
"default": "always",
"enumDescriptions": [
"Never seed search string from the editor selection.",
"Always seed search string from the editor selection, including word at cursor position.",
"Only seed search string from the editor selection."
],
"description": "Controls whether the search string in the Find Widget is seeded from the editor selection.",
"defaultDefaultValue": "always",
"scope": 5,
"restricted": false
},
"editor.find.autoFindInSelection": {
"type": "string",
"enum": [
"never",
"always",
"multiline"
],
"default": "never",
"enumDescriptions": [
"Never turn on Find in Selection automatically (default).",
"Always turn on Find in Selection automatically.",
"Turn on Find in Selection automatically when multiple lines of content are selected."
],
"description": "Controls the condition for turning on Find in Selection automatically.",
"defaultDefaultValue": "never",
"scope": 5,
"restricted": false
},
"editor.find.addExtraSpaceOnTop": {
"type": "boolean",
"default": true,
"description": "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.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.find.loop": {
"type": "boolean",
"default": true,
"description": "Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found.",
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.folding": {
"description": "Controls whether the editor has code folding enabled.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.foldingStrategy": {
"enumDescriptions": [
"Use a language-specific folding strategy if available, else the indentation-based one.",
"Use the indentation-based folding strategy."
],
"description": "Controls the strategy for computing folding ranges.",
"type": "string",
"enum": [
"auto",
"indentation"
],
"default": "auto",
"defaultDefaultValue": "auto",
"scope": 5,
"restricted": false
},
"editor.foldingHighlight": {
"description": "Controls whether the editor should highlight folded ranges.",
"type": "boolean",
"default": true,
"defaultDefaultValue": true,
"scope": 5,
"restricted": false
},
"editor.foldingImportsByDefault": {
"description": "Controls whether the editor automatically collapses import ranges.",
"type": "boolean",
"default": false,
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.foldingMaximumRegions": {
"description": "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.",
"type": "integer",
"default": 5000,
"minimum": 10,
"maximum": 65000,
"defaultDefaultValue": 5000,
"scope": 5,
"restricted": false
},
"editor.unfoldOnClickAfterEndOfLine": {
"description": "Controls whether clicking on the empty content after a folded line will unfold the line.",
"type": "boolean",
"default": false,
"defaultDefaultValue": false,
"scope": 5,
"restricted": false
},
"editor.fontFamily": {
"description": "Controls the font family.",
"type": "string",
"default": "Consolas, 'Courier New', monospace",