mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Include triple-stash bracket for unescaped html and add brace to surroundingPairs (#68833)
Triple-stash {{{ ... }}} is used to surround an expression that should not be escaped for HTML
Having the option to enable surroundingPairs for brace would simplify the editing experience
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
["<!--", "-->"],
|
||||
["<", ">"],
|
||||
["{{", "}}"],
|
||||
["{{{", "}}}"],
|
||||
["{", "}"],
|
||||
["(", ")"]
|
||||
],
|
||||
@@ -19,6 +20,7 @@
|
||||
"surroundingPairs": [
|
||||
{ "open": "'", "close": "'" },
|
||||
{ "open": "\"", "close": "\"" },
|
||||
{ "open": "<", "close": ">" }
|
||||
{ "open": "<", "close": ">" },
|
||||
{ "open": "{", "close": "}" }
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user