elixir-editors / elixir-editors/emacs-elixir
Indentation of simple functions
Open
- Dominant language
- Emacs Lisp
- Stars
- 454
- Forks
- 93
- PR merge metrics
- No merged PRs in 30d
Description
Expecting:
``` elixir
def my_func([head | tail]),
do: head
def my_func(other),
do: other
```
Get:
``` elixir
def my_func([head | tail]),
do: head
def my_func(other),
do: other
```
Contributor guide
Assessment
This issue has not been assessed yet.