Kristian Nedrevold

Results 57 comments of Kristian Nedrevold

Here is the project where I got the error. Which is just a initialized bleep project. https://github.com/KristianAN/migrator

I don't think that Java version has anything to do with it. if I add //> using dep com.lihaoyi::fansi:0.5.0 to App.scala and run scala-cli setup-ide migrator metals imports the build...

Can this be implemented before Neovim 0.10? Afaik the lsp.inlay_hint feature is not stable yet.

There is this library https://github.com/rolang/dumbo by @rolang . Dumbo is however tied to the flyway spec, which some might not like because of flyways open-core model?

> I'm experiencing the same issue on my side This will be fixed in the next release of bleep.

More about the change is here: https://docs.scala-lang.org/scala3/reference/dropped-features/this-qualifier.html This seems to be related to https://github.com/guardrail-dev/guardrail/blob/master/modules/scala-http4s/src/main/scala/dev/guardrail/generators/scala/http4s/Http4sGenerator.scala in my case.

Since the change changes the semantics of the program the easiest fix is maybe to just change from ```scala private[this] ``` to ```scala private[Http4sGenerator] ```

If no-one is working on this I can do it.

I have taken a look at bloop-core regarding test arguments (setArguments) and as far as I can tell bloop does not support any arguments for tests through BSP. I will...

Regarding syntax I think it would be very beneficial to follow scala-cli where possible? bleep test project is the same as scala-cli. The syntax used there is scala-cli test project...