From f2ff1361344bec4bfa08af359c4d5132b1d0772d Mon Sep 17 00:00:00 2001 From: J/A Date: Sat, 14 May 2016 23:03:47 -0500 Subject: [PATCH] Do not autoclose `'` `'` is used to denote a lifetime, as in `fn foo<'a>(bar: &'a Baz) { ...` and it isn't helpful to have it automatically closed. --- extensions/rust/rust.configuration.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extensions/rust/rust.configuration.json b/extensions/rust/rust.configuration.json index e4656d0babb..34396c3121e 100644 --- a/extensions/rust/rust.configuration.json +++ b/extensions/rust/rust.configuration.json @@ -12,8 +12,7 @@ ["{", "}"], ["[", "]"], ["(", ")"], - ["\"", "\""], - ["'", "'"] + ["\"", "\""] ], "surroundingPairs": [ ["{", "}"], @@ -22,4 +21,4 @@ ["\"", "\""], ["'", "'"] ] -} \ No newline at end of file +} -- GitLab