Auto-closing backticks in Python. Fixes #41615

This commit is contained in:
Martin Aeschlimann 2018-03-02 09:45:26 +01:00
parent 6b8e9cff3f
commit 9ee425cebd
2 changed files with 5 additions and 4 deletions

View file

@ -11,8 +11,7 @@
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["`", "`"]
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],

View file

@ -29,14 +29,16 @@
{ "open": "f'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "F'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "b'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "B'", "close": "'", "notIn": ["string", "comment"] }
{ "open": "B'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "`", "close": "`", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
["'", "'"],
["`", "`"]
],
"folding": {
"offSide": true,