Skip to content

Commit b2728f4

Browse files
committed
bracket pair : "{}"
1 parent 50ca0cb commit b2728f4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

language-configuration.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@
44
},
55
"brackets": [
66
["[", "]"],
7-
["(", ")"]
7+
["(", ")"],
8+
["{", "}"]
89
],
910
"autoClosingPairs": [
1011
{ "open": "[", "close": "]" },
1112
{ "open": "(", "close": ")" },
13+
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
1214
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
1315
{ "open": "\"", "close": "\"", "notIn": ["string"] }
1416
],
1517
"surroundingPairs": [
1618
["[", "]"],
1719
["(", ")"],
20+
["{", "}"],
1821
["\"", "\""],
1922
["'", "'"]
2023
],

0 commit comments

Comments
 (0)