do not autoclose quotes when in strings. Fixes #88265

This commit is contained in:
Martin Aeschlimann
2020-01-09 10:34:35 +01:00
parent 4f6af32f43
commit e9bb8b306c
20 changed files with 56 additions and 53 deletions

View File

@@ -12,9 +12,9 @@
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string"] },
{ "open": "`", "close": "`", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
@@ -24,4 +24,4 @@
["'", "'"],
["`", "`"]
]
}
}