Don't auto-complete `do...end`

Antonio Scandurra created

Implementing this properly is a bit finicky, and it's unclear this
is even expected, e.g. VS Code and Atom don't auto-complete do/end
for Ruby, although VS Code does auto-complete do/end for Elixir. We
can add it if it's something the Elixir folks want us to implement.

Change summary

crates/zed/src/languages/elixir/config.toml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

Detailed changes

crates/zed/src/languages/elixir/config.toml 🔗

@@ -6,6 +6,5 @@ brackets = [
     { start = "{", end = "}", close = true, newline = true },
     { start = "[", end = "]", close = true, newline = true },
     { start = "(", end = ")", close = true, newline = true },
-    { start = "\"", end = "\"", close = true, newline = false },
-    { start = "do", end = " end", close = true, newline = true },
+    { start = "\"", end = "\"", close = true, newline = false }
 ]