fixes #4510: [python] Add quote surround/auto-completion for Python

This commit is contained in:
Martin Aeschlimann
2016-04-21 22:14:33 +02:00
parent 623de4af98
commit d043747187

View File

@@ -7,7 +7,20 @@
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
// enhancedBrackets: [ { open: /.*:\s*$/, closeComplete: 'else:' } ],
}