mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-07 16:17:53 +03:00
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:
parent
559dad893f
commit
92f0e4fd74
@ -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 }
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user