From 885a783837bb4b78f2541b0fabb113f3851ffa59 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:29:14 +0200 Subject: [PATCH] [f#] autoclosing and surrounding pair --- extensions/fsharp/fsharp.configuration.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/fsharp/fsharp.configuration.json b/extensions/fsharp/fsharp.configuration.json index 509cce16461..c7b8d893937 100644 --- a/extensions/fsharp/fsharp.configuration.json +++ b/extensions/fsharp/fsharp.configuration.json @@ -7,5 +7,19 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] } \ No newline at end of file -- GitLab