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 formater does not perform well in such a snippet
for i = 1:22 if i > 3 && i < a(end - 1) break else continue end end
Wrongly format to
for i = 1:22 if i > 3 && i < a( end - 1) break else continue end end
In addition, behave well in quite a similar code
for i = 1:22 if i > 3 && i < a(end) break else continue end end
The text was updated successfully, but these errors were encountered:
I am having the same issue, would be great if this is fixed
Sorry, something went wrong.
No branches or pull requests
The formater does not perform well in such a snippet
Wrongly format to
In addition, behave well in quite a similar code
The text was updated successfully, but these errors were encountered: