Disable Autoclosing Pairs for Quotes in c++ strings and comments (#25100)

Fixes #25025
This commit is contained in:
Matt Bierner 2017-04-20 15:21:42 -07:00 committed by GitHub
parent 39608c5cb2
commit a291da4049

View file

@ -9,11 +9,11 @@
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
{ "open": "[", "close": "]" },
{ "open": "{", "close": "}" },
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],