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
The following code breaks the indentation for the rest of the file:
defmodule TestIndentation do import Enum @att %{ab: "cd", de: "fg"} | <-- cursor is here end
If I remove the import Enum line or the line-break after the comma, everything is fine.
import Enum
Please let me know if I can help narrow this down further. I'm using spacemacs and everything is up to date, if that's relevant.
The text was updated successfully, but these errors were encountered:
For me, even the @att line is indented wrong:
@att
Expected:
defmodule TestIndentation do import Enum @att %{ab: "cd", de: "fg"} IO.inspect @att end
Actual:
Sorry, something went wrong.
If I add a new line after import Enum, it works fine:
Expected and Actual:
Thanks for the report guys 👍
It's fixed on fc20276, just wait until melpa.org build the latest alchemist package from master before package-installusage.
package-install
Successfully merging a pull request may close this issue.
The following code breaks the indentation for the rest of the file:
If I remove the
import Enum
line or the line-break after the comma, everything is fine.Please let me know if I can help narrow this down further. I'm using spacemacs and everything is up to date, if that's relevant.
The text was updated successfully, but these errors were encountered: