vscode/extensions/handlebars/language-configuration.json
Jaco Swarts cb281cc758 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
2019-02-19 09:38:06 +01:00

27 lines
524 B
JSON

{
"comments": {
"blockComment": [ "{{!--", "--}}" ]
},
"brackets": [
["<!--", "-->"],
["<", ">"],
["{{", "}}"],
["{{{", "}}}"],
["{", "}"],
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}"},
{ "open": "[", "close": "]"},
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" }
],
"surroundingPairs": [
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" },
{ "open": "<", "close": ">" },
{ "open": "{", "close": "}" }
]
}