elixir-editors / elixir-editors/emacs-elixir
Allow indentation of multiline function arguments to indent to the first argument of the first line
Open
- Dominant language
- Emacs Lisp
- Stars
- 454
- Forks
- 93
- PR merge metrics
- No merged PRs in 30d
Description
So that code like this
~~~
defmodule Foo do
def foo() do
my_fun(a, b, c,
d, e, f)
end
end
~~~
could also be indented like this:
~~~
defmodule Foo do
def foo() do
my_fun(a, b, c,
d, e, f)
end
end
~~~
Contributor guide
Assessment
This issue has not been assessed yet.