From 945ce3b1f66c13307df7a193c36914c5c0810ed0 Mon Sep 17 00:00:00 2001 From: Susmit Agrawal Date: Sat, 27 Oct 2018 12:12:22 +0530 Subject: [PATCH] Added double quotes in autocomplete pairs --- syntaxes/arduino.configuration.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/syntaxes/arduino.configuration.json b/syntaxes/arduino.configuration.json index 98a1d840..c5ebe231 100644 --- a/syntaxes/arduino.configuration.json +++ b/syntaxes/arduino.configuration.json @@ -14,13 +14,15 @@ ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + ["\"", "\""] ], "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + ["\"", "\""] ] -} \ No newline at end of file +}