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

@@ -11,8 +11,8 @@
["{", "}"],
["[", "]"],
["(", ")"],
["'", "'"],
["\"", "\""]
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
@@ -24,4 +24,4 @@
"folding": {
"offSide": true
}
}
}