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
-export([ drop/4 %% comment ]). %% Another comment -export([ a/1, b/1 ]).
is currently formatted to
%% comment -export([drop/4]). %% Another comment -export([a/1, b/1]).
But there seems to be newline missing between the two exports as they are technically both multiline.
The text was updated successfully, but these errors were encountered:
The reason for automatically adding a newline, given a comment, is that then the following
% bla -define(FOO, "foo"). -define(BAR, "bar"). -define(BAZ, [ "a" ]).
would be formatted to
But we can consider preserving new lines as then this would allow users to group defines manually
-define(FOO1, "foo"). -define(FOO2, "foo"). -define(NOTFOO, "bar"). -define(NOTFOO2, "bar").
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
is currently formatted to
But there seems to be newline missing between the two exports as they are technically both multiline.
The text was updated successfully, but these errors were encountered: