Hiromi Ishii
Hiromi Ishii
So it must be reported to commercialhaskell/stack as an upstream bug, right?
OK, I've just reported it as commercialhaskell/stack#5480.
I wonder if we could encapsulate helper functions used in Eval Plugin as another module and load it to avoid such complication with `NoImplicitPrelude`. I think rejection of `1` here...
> I happened to define many functions with the same name of these in Prelude, so I thought it might be better to turn on the NoImplicitPrelude extension and then...
Yes. I've gotten bitten by this yesterday at least with HLS 2.5.0.0.
I've just tested and confirmed that it still occurs with HLS 2.6.0.0.
The current master branch compiles with GHC 9.0.1 on my environment (macOS), great! By the way, is there any schedule for uploading a new version with GHC 9 support on...
Great, thanks!
I've also been hit by this bug. Environment: - OS: Ubuntu 20.04.6 LTS (connected via VSCode Remote with the client running on macOS Sonoma) - GHC: 9.2.8, installed via GHCup...
You can just use [Splice Plugin](https://haskell-language-server.readthedocs.io/en/latest/features.html#insert-contents-of-template-haskell-splice) to expand splices in-place or commented out style, without resorting to `-ddump` things. You can basically invoke "expand TemplateHaskell Splice" code action if LHS...