Skip to content

Commit 8261061

Browse files
committed
chore: Regenerate extensions
1 parent 43c37ab commit 8261061

File tree

17 files changed

+655
-34
lines changed

17 files changed

+655
-34
lines changed

src/languages/extensions/configurations/cpptools.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2303,6 +2303,15 @@
23032303
]
23042304
},
23052305
"scope": 4
2306+
},
2307+
"C_Cpp.debugShortcut": {
2308+
"type": "boolean",
2309+
"default": false,
2310+
"tags": [
2311+
"experimental"
2312+
],
2313+
"description": "Show icon for 'Debug and Run' in shortcut menu bar",
2314+
"scope": 3
23062315
}
23072316
}
23082317
}

src/languages/extensions/configurations/scalameta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"properties": {
55
"metals.serverVersion": {
66
"type": "string",
7-
"default": "0.11.1",
7+
"default": "0.11.1+97-0ef9a93b-SNAPSHOT",
88
"markdownDescription": "The version of the Metals server artifact. Requires reloading the window.\n\n**Change only if you know what you're doing**",
99
"scope": 3
1010
},
@@ -51,7 +51,7 @@
5151
"metals.javaHome": {
5252
"type": "string",
5353
"scope": 6,
54-
"markdownDescription": "Optional path to the Java home directory. Requires reloading the window.\n\nDefaults to the most recent Java version between 8 and 11 (inclusive) computed by the `locate-java-home` npm package."
54+
"markdownDescription": "Optional path to the Java home directory. Requires reloading the window.\n\nDefaults to the most recent Java version between 8 and 17 (inclusive) computed by the `locate-java-home` npm package."
5555
},
5656
"metals.sbtScript": {
5757
"type": "string",
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
[
2+
{
3+
"title": "Solargraph settings for Ruby",
4+
"properties": {
5+
"solargraph.transport": {
6+
"type": "string",
7+
"default": "socket",
8+
"enum": [
9+
"socket",
10+
"stdio",
11+
"external"
12+
],
13+
"description": "The type of transport to use.",
14+
"scope": 3
15+
},
16+
"solargraph.externalServer": {
17+
"type": "object",
18+
"description": "The host and port to use for external transports. (Ignored for stdio and socket transports.)",
19+
"properties": {
20+
"host": {
21+
"type": "string",
22+
"default": "localhost"
23+
},
24+
"port": {
25+
"type": "integer",
26+
"default": 7658
27+
}
28+
},
29+
"default": {
30+
"host": "localhost",
31+
"port": 7658
32+
},
33+
"scope": 3
34+
},
35+
"solargraph.commandPath": {
36+
"type": "string",
37+
"default": "solargraph",
38+
"description": "Path to the solargraph command. Set this to an absolute path to select from multiple installed Ruby versions.",
39+
"scope": 4
40+
},
41+
"solargraph.useBundler": {
42+
"type": "boolean",
43+
"description": "Use `bundle exec` to run solargraph. (If this is true, the solargraph.commandPath setting is ignored.)",
44+
"default": false,
45+
"scope": 3
46+
},
47+
"solargraph.bundlerPath": {
48+
"type": "string",
49+
"description": "Path to the bundle executable, defaults to 'bundle'. Needs to be an absolute path for the 'bundle' exec/shim",
50+
"default": "bundle",
51+
"scope": 4
52+
},
53+
"solargraph.checkGemVersion": {
54+
"type": "boolean",
55+
"description": "Automatically check if a new version of the Solargraph gem is available.",
56+
"default": true,
57+
"enum": [
58+
true,
59+
false
60+
],
61+
"scope": 3
62+
},
63+
"solargraph.completion": {
64+
"type": [
65+
"boolean"
66+
],
67+
"description": "Enable completion",
68+
"default": true,
69+
"enum": [
70+
true,
71+
false
72+
],
73+
"scope": 3
74+
},
75+
"solargraph.hover": {
76+
"type": [
77+
"boolean"
78+
],
79+
"description": "Enable hover",
80+
"default": true,
81+
"enum": [
82+
true,
83+
false
84+
],
85+
"scope": 3
86+
},
87+
"solargraph.diagnostics": {
88+
"type": [
89+
"boolean"
90+
],
91+
"description": "Enable diagnostics",
92+
"default": true,
93+
"enum": [
94+
true,
95+
false
96+
],
97+
"scope": 3
98+
},
99+
"solargraph.autoformat": {
100+
"type": [
101+
"boolean"
102+
],
103+
"description": "Enable automatic formatting while typing (WARNING: experimental)",
104+
"default": false,
105+
"enum": [
106+
true,
107+
false
108+
],
109+
"scope": 3
110+
},
111+
"solargraph.formatting": {
112+
"type": [
113+
"boolean"
114+
],
115+
"description": "Enable document formatting",
116+
"enum": [
117+
true,
118+
false
119+
],
120+
"default": false,
121+
"scope": 3
122+
},
123+
"solargraph.symbols": {
124+
"type": [
125+
"boolean"
126+
],
127+
"description": "Enable symbols",
128+
"enum": [
129+
true,
130+
false
131+
],
132+
"default": true,
133+
"scope": 3
134+
},
135+
"solargraph.definitions": {
136+
"type": [
137+
"boolean"
138+
],
139+
"description": "Enable definitions (go to, etc.)",
140+
"enum": [
141+
true,
142+
false
143+
],
144+
"default": true,
145+
"scope": 3
146+
},
147+
"solargraph.rename": {
148+
"type": [
149+
"boolean"
150+
],
151+
"description": "Enable symbol renaming",
152+
"enum": [
153+
true,
154+
false
155+
],
156+
"default": true,
157+
"scope": 3
158+
},
159+
"solargraph.references": {
160+
"type": [
161+
"boolean"
162+
],
163+
"description": "Enable finding references",
164+
"enum": [
165+
true,
166+
false
167+
],
168+
"default": true,
169+
"scope": 3
170+
},
171+
"solargraph.folding": {
172+
"type": "boolean",
173+
"description": "Enable folding ranges",
174+
"default": true,
175+
"scope": 3
176+
},
177+
"solargraph.logLevel": {
178+
"type": "string",
179+
"description": "Level of debug info to log. `warn` is least and `debug` is most.",
180+
"enum": [
181+
"warn",
182+
"info",
183+
"debug"
184+
],
185+
"default": "warn",
186+
"scope": 3
187+
}
188+
}
189+
}
190+
]

src/languages/extensions/configurations/typescript-language-features.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -588,25 +588,25 @@
588588
"type": "boolean",
589589
"default": true,
590590
"description": "Enable/disable suggestion to complete JSDoc comments.",
591-
"scope": 4
591+
"scope": 5
592592
},
593593
"typescript.suggest.completeJSDocs": {
594594
"type": "boolean",
595595
"default": true,
596596
"description": "Enable/disable suggestion to complete JSDoc comments.",
597-
"scope": 4
597+
"scope": 5
598598
},
599599
"javascript.suggest.jsdoc.generateReturns": {
600600
"type": "boolean",
601601
"default": true,
602602
"markdownDescription": "Enable/disable generating `@return` annotations for JSDoc templates. Requires using TypeScript 4.2+ in the workspace.",
603-
"scope": 4
603+
"scope": 5
604604
},
605605
"typescript.suggest.jsdoc.generateReturns": {
606606
"type": "boolean",
607607
"default": true,
608608
"markdownDescription": "Enable/disable generating `@return` annotations for JSDoc templates. Requires using TypeScript 4.2+ in the workspace.",
609-
"scope": 4
609+
"scope": 5
610610
},
611611
"typescript.locale": {
612612
"type": "string",
@@ -646,7 +646,7 @@
646646
],
647647
"default": "auto",
648648
"markdownDescription": "Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports.",
649-
"scope": 4
649+
"scope": 5
650650
},
651651
"typescript.preferences.quoteStyle": {
652652
"type": "string",
@@ -657,7 +657,7 @@
657657
],
658658
"default": "auto",
659659
"markdownDescription": "Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports.",
660-
"scope": 4
660+
"scope": 5
661661
},
662662
"javascript.preferences.importModuleSpecifier": {
663663
"type": "string",
@@ -675,7 +675,7 @@
675675
],
676676
"default": "shortest",
677677
"description": "Preferred path style for auto imports.",
678-
"scope": 4
678+
"scope": 5
679679
},
680680
"typescript.preferences.importModuleSpecifier": {
681681
"type": "string",
@@ -693,7 +693,7 @@
693693
],
694694
"default": "shortest",
695695
"description": "Preferred path style for auto imports.",
696-
"scope": 4
696+
"scope": 5
697697
},
698698
"javascript.preferences.importModuleSpecifierEnding": {
699699
"type": "string",
@@ -711,7 +711,7 @@
711711
],
712712
"default": "auto",
713713
"description": "Preferred path ending for auto imports. Requires using TypeScript 4.5+ in the workspace.",
714-
"scope": 4
714+
"scope": 5
715715
},
716716
"typescript.preferences.importModuleSpecifierEnding": {
717717
"type": "string",
@@ -729,7 +729,7 @@
729729
],
730730
"default": "auto",
731731
"description": "Preferred path ending for auto imports. Requires using TypeScript 4.5+ in the workspace.",
732-
"scope": 4
732+
"scope": 5
733733
},
734734
"javascript.preferences.jsxAttributeCompletionStyle": {
735735
"type": "string",
@@ -745,7 +745,7 @@
745745
],
746746
"default": "auto",
747747
"description": "Preferred style for JSX attribute completions.",
748-
"scope": 4
748+
"scope": 5
749749
},
750750
"typescript.preferences.jsxAttributeCompletionStyle": {
751751
"type": "string",
@@ -761,7 +761,7 @@
761761
],
762762
"default": "auto",
763763
"description": "Preferred style for JSX attribute completions.",
764-
"scope": 4
764+
"scope": 5
765765
},
766766
"typescript.preferences.includePackageJsonAutoImports": {
767767
"type": "string",
@@ -784,26 +784,26 @@
784784
"default": true,
785785
"description": "Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.",
786786
"deprecationMessage": "The setting 'typescript.preferences.renameShorthandProperties' has been deprecated in favor of 'typescript.preferences.useAliasesForRenames'",
787-
"scope": 4
787+
"scope": 5
788788
},
789789
"typescript.preferences.renameShorthandProperties": {
790790
"type": "boolean",
791791
"default": true,
792792
"description": "Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.",
793793
"deprecationMessage": "The setting 'typescript.preferences.renameShorthandProperties' has been deprecated in favor of 'typescript.preferences.useAliasesForRenames'",
794-
"scope": 4
794+
"scope": 5
795795
},
796796
"javascript.preferences.useAliasesForRenames": {
797797
"type": "boolean",
798798
"default": true,
799799
"description": "Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.",
800-
"scope": 4
800+
"scope": 5
801801
},
802802
"typescript.preferences.useAliasesForRenames": {
803803
"type": "boolean",
804804
"default": true,
805805
"description": "Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.",
806-
"scope": 4
806+
"scope": 5
807807
},
808808
"typescript.updateImportsOnFileMove.enabled": {
809809
"type": "string",
@@ -841,25 +841,25 @@
841841
"type": "boolean",
842842
"default": true,
843843
"description": "Enable/disable automatic closing of JSX tags.",
844-
"scope": 3
844+
"scope": 5
845845
},
846846
"javascript.autoClosingTags": {
847847
"type": "boolean",
848848
"default": true,
849849
"description": "Enable/disable automatic closing of JSX tags.",
850-
"scope": 3
850+
"scope": 5
851851
},
852852
"javascript.suggest.enabled": {
853853
"type": "boolean",
854854
"default": true,
855855
"description": "Enabled/disable autocomplete suggestions.",
856-
"scope": 4
856+
"scope": 5
857857
},
858858
"typescript.suggest.enabled": {
859859
"type": "boolean",
860860
"default": true,
861861
"description": "Enabled/disable autocomplete suggestions.",
862-
"scope": 4
862+
"scope": 5
863863
},
864864
"typescript.surveys.enabled": {
865865
"type": "boolean",

0 commit comments

Comments
 (0)