Skip to content

Commit ba49f26

Browse files
committed
Auto-close backticks
Typing a backtick now automatically adds a closing backtick as well. Also possible to quickly add add backticks are ident by selecting and typing backtick. Fixes #279
1 parent 1fa3885 commit ba49f26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

language-configuration.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@
2020
["s\"", "\""],
2121
["f\"", "\""],
2222
["raw\"", "\""],
23+
["`", "`"]
2324
],
2425
// symbols that that can be used to surround a selection
2526
"surroundingPairs": [
2627
["{", "}"],
2728
["[", "]"],
2829
["(", ")"],
2930
["\"", "\""],
30-
["'", "'"]
31+
["'", "'"],
32+
["`", "`"]
3133
]
3234
}

0 commit comments

Comments
 (0)