From 623de4af9846dcc34a830ed2db74183eabff9ec5 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:11:22 +0200 Subject: [PATCH] fixes #5617: [ruby] auto-close for quotes in ruby not working --- extensions/ruby/ruby.configuration.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/ruby/ruby.configuration.json b/extensions/ruby/ruby.configuration.json index 3fc4efcaa25..b508561c897 100644 --- a/extensions/ruby/ruby.configuration.json +++ b/extensions/ruby/ruby.configuration.json @@ -7,5 +7,19 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] } \ No newline at end of file