Skip to content

Commit 761a510

Browse files
authored
Merge pull request #249 from taminomara/backticks
Add backticks to the set of supported parentheses
2 parents 14ee569 + 2d9a6a3 commit 761a510

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

language-configuration.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,24 @@
66
"brackets": [
77
["[", "]"],
88
["(", ")"],
9-
["{", "}"]
9+
["{", "}"],
10+
["`", "`"]
1011
],
1112
"autoClosingPairs": [
1213
{ "open": "[", "close": "]" },
1314
{ "open": "(", "close": ")" },
1415
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
1516
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
16-
{ "open": "\"", "close": "\"", "notIn": ["string"] }
17+
{ "open": "\"", "close": "\"", "notIn": ["string"] },
18+
{ "open": "`", "close": "`" }
1719
],
1820
"surroundingPairs": [
1921
["[", "]"],
2022
["(", ")"],
2123
["{", "}"],
2224
["\"", "\""],
23-
["'", "'"]
25+
["'", "'"],
26+
["`", "`"]
2427
],
2528
"folding": {
2629
"markers": {

0 commit comments

Comments
 (0)