提交 9ee425ce 编写于 作者: M Martin Aeschlimann

Auto-closing backticks in Python. Fixes #41615

上级 6b8e9cff
......@@ -11,8 +11,7 @@
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["`", "`"]
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
......
......@@ -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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册