HTML files: curly braces, brackets, and parens do not wrap a selection. Fixes #16408

This commit is contained in:
Martin Aeschlimann 2016-12-03 08:19:18 +01:00
parent 2d73748702
commit 172184c86f

View file

@ -17,6 +17,10 @@
],
"surroundingPairs": [
{ "open": "'", "close": "'" },
{ "open": "\"", "close": "\"" }
{ "open": "\"", "close": "\"" },
{ "open": "{", "close": "}"},
{ "open": "[", "close": "]"},
{ "open": "(", "close": ")" },
{ "open": "<", "close": ">" }
]
}