We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Matt,
Just started using elixir-mode and its great. Thanks you so much for your effort.
btw I'm using elixir-mode 2.2.4 with emacs 24.3.1
I'm working my way through Chris McCord metaprogramming book and this example from chapter 2:
defmodule ControlFlow do defmacro my_if(expr, do: if_block), do: if(expr, do: if_block, else: nil) defmacro my_if(expr, do: if_block, else: else_block) do quote do case unquote(expr) do result when result in [false, nil] -> unquote(else_block) _ -> unquote(if_block) end end end end
ends up look like this when tabbed:
The text was updated successfully, but these errors were encountered:
Oof. Alright, thanks for the report.
Sorry, something went wrong.
I will have a look at this one.
correct indentation after one line definition with if keyword fixes #212
b039283
Remove references to being a fork (elixir-editors#213)
ec83ec1
Fixes elixir-editors#212
Successfully merging a pull request may close this issue.
Hi Matt,
Just started using elixir-mode and its great. Thanks you so much for your effort.
btw I'm using elixir-mode 2.2.4 with emacs 24.3.1
I'm working my way through Chris McCord metaprogramming book and this example from chapter 2:
ends up look like this when tabbed:
The text was updated successfully, but these errors were encountered: