feat: add backtick to surrounding and auto-closing pairs

This commit is contained in:
Connor Skees 2023-09-26 06:31:16 +00:00
parent d3cc3bc00e
commit 6ca48d98c4

View file

@ -18,7 +18,8 @@
{ "open": "[", "close": "]" }, { "open": "[", "close": "]" },
{ "open": "(", "close": ")" }, { "open": "(", "close": ")" },
{ "open": "\"", "close": "\"", "notIn": ["string"] }, { "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */" } { "open": "/*", "close": " */" },
{ "open": "`", "close": "`", "notIn": ["string"] }
], ],
"autoCloseBefore": ";:.,=}])> \n\t", "autoCloseBefore": ";:.,=}])> \n\t",
"surroundingPairs": [ "surroundingPairs": [
@ -27,7 +28,8 @@
["(", ")"], ["(", ")"],
["<", ">"], ["<", ">"],
["\"", "\""], ["\"", "\""],
["'", "'"] ["'", "'"],
["`", "`"]
], ],
"indentationRules": { "indentationRules": {
"increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$", "increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",