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.
This commit is contained in:
J/A 2016-05-14 23:03:47 -05:00
parent cd1d4d8f55
commit f2ff136134

View file

@ -12,8 +12,7 @@
["{", "}"], ["{", "}"],
["[", "]"], ["[", "]"],
["(", ")"], ["(", ")"],
["\"", "\""], ["\"", "\""]
["'", "'"]
], ],
"surroundingPairs": [ "surroundingPairs": [
["{", "}"], ["{", "}"],
@ -22,4 +21,4 @@
["\"", "\""], ["\"", "\""],
["'", "'"] ["'", "'"]
] ]
} }