You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: nls.localize('schema.brackets','Defines the bracket symbols that increase or decrease the indentation.'),
170
166
type: 'array',
171
167
items: {
172
168
$ref: '#definitions/bracketPair'
173
169
}
174
170
},
175
171
autoClosingPairs: {
176
-
default: {
177
-
autoClosingPairs: [['(',')'],['[',']'],['{','}']]
178
-
},
172
+
default: [['(',')'],['[',']'],['{','}']],
179
173
description: nls.localize('schema.autoClosingPairs','Defines the bracket pairs. When a opening bracket is entered, the closing bracket is inserted automatically.'),
180
174
type: 'array',
181
175
items: {
@@ -202,9 +196,7 @@ const schema: IJSONSchema = {
202
196
}
203
197
},
204
198
surroundingPairs: {
205
-
default: {
206
-
surroundingPairs: [['(',')'],['[',']'],['{','}']]
207
-
},
199
+
default: [['(',')'],['[',']'],['{','}']],
208
200
description: nls.localize('schema.surroundingPairs','Defines the bracket pairs that can be used to surround a selected string.'),
0 commit comments