Skip to content

Commit 6ca48d9

Browse files
committed
feat: add backtick to surrounding and auto-closing pairs
1 parent d3cc3bc commit 6ca48d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

editors/code/language-configuration.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
{ "open": "[", "close": "]" },
1919
{ "open": "(", "close": ")" },
2020
{ "open": "\"", "close": "\"", "notIn": ["string"] },
21-
{ "open": "/*", "close": " */" }
21+
{ "open": "/*", "close": " */" },
22+
{ "open": "`", "close": "`", "notIn": ["string"] }
2223
],
2324
"autoCloseBefore": ";:.,=}])> \n\t",
2425
"surroundingPairs": [
@@ -27,7 +28,8 @@
2728
["(", ")"],
2829
["<", ">"],
2930
["\"", "\""],
30-
["'", "'"]
31+
["'", "'"],
32+
["`", "`"]
3133
],
3234
"indentationRules": {
3335
"increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",

0 commit comments

Comments
 (0)