From d043747187ccc1a445d545c3c592c26a6a6c80d0 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:14:33 +0200 Subject: [PATCH] fixes #4510: [python] Add quote surround/auto-completion for Python --- extensions/python/python.configuration.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/extensions/python/python.configuration.json b/extensions/python/python.configuration.json index 98b22302b1c..a580e4aae77 100644 --- a/extensions/python/python.configuration.json +++ b/extensions/python/python.configuration.json @@ -7,7 +7,20 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] - // enhancedBrackets: [ { open: /.*:\s*$/, closeComplete: 'else:' } ], } \ No newline at end of file -- GitLab