-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct pipeline indentation #317
Conversation
Awesome 👏! |
I appreciate this, thanks! |
Thanks I appreciate the patience you guys had 😄 |
Hmm, I don't think this is solved completely. Just pulled the master of emacs-elixir and got this behavior: I expected this: defmodule Foo do
def bar do
baz =
[1,2,3,4,5,6,7,8,9]
|> Enum.reverse
|> Enum.filter(&(&1 > 5))
end
end I got this: defmodule Foo do
def bar do
baz =
[1,2,3,4,5,6,7,8,9]
|> Enum.reverse
|> Enum.filter(&(&1 > 5))
end
end Is it just me? |
thanks @gausby! I'm on it |
Reproduced the same behaviour as @gausby. |
* Try not setting RUN_DIALYZER for 1.10.3 * Remove other references to RUN_DIALYZER
Hi everyone, I just wanted to know if this is solved or not. A similar issue happens with the
But the elixir-mode does this, it places four spaces:
|
@mreyk can you file that as a separate issue? |
fixes #243