Don't auto-complete do...end

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.
This commit is contained in:
Antonio Scandurra 2022-08-22 14:57:44 +02:00
parent 559dad893f
commit 92f0e4fd74

View File

@ -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 }
]