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
Describe the bug The code
foo = foo @[k|bar|]
formats to
foo = foo @ [k|bar|]
which is wrong because @[k|bar|] is a type application but @ [k|bar|] is an operator application.
@[k|bar|]
@ [k|bar|]
To Reproduce Via Ormolu Live.
Expected behavior Not inserting space after @.
@
Environment Version 0.7.7.0, commit 392b2bc, using ghc-lib-parser 9.10.1.20240511
The text was updated successfully, but these errors were encountered:
QuasiQuotes
Thanks! Fix is in #1135 👍
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
The code
formats to
which is wrong because
@[k|bar|]
is a type application but@ [k|bar|]
is an operator application.To Reproduce
Via Ormolu Live.
Expected behavior
Not inserting space after
@
.Environment
Version 0.7.7.0, commit 392b2bc, using ghc-lib-parser 9.10.1.20240511
The text was updated successfully, but these errors were encountered: