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
1 changed files with 1 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue