Ricardo Casía

Results 60 comments of Ricardo Casía

For now, I set `min_init` option in the config as described in the README documentation. I did not look further into it yet.

Checked out the issue, and turns out we've got multiple minimal_init.vim files in some of the project subdirectories. I did expect that behavior, as these files are located within a...

That's a good start. Exploring further into it, to have a smooth integration with other software we would need something more like this example: ```json [ { "name": "foo1", "function":...

Although neotest-bash would currently only require "function" and "state" (along with the referenced test file), I crafted this proposal with a broader perspective, considering potential integrations with IDEs, GitHub Actions,...

Certainly not every field holds the same importance. "function" and "state" are fundamental. The remaining could be treated as nice-to-haves and could be done gradually, or perhaps not at all...

Hi everyone, After using the adapter more extensively, observing increased usage from the community, and being inactive for a while, I have concluded that the proposed functionality to generate test...

How does your project structure look? When you open the test summary, does it show "neotest-java" on top?

I found this on stackoverflow: https://stackoverflow.com/questions/42867268/luaxml-xmldecl-not-at-start-document-char-1 This error comes from [neotest](https://github.com/nvim-neotest/neotest/blob/master/lua/neotest/lib/xml/internal.lua), that is using [xml2lua](https://github.com/manoelcampos/xml2lua). The file `pom.xml` file seems to have a [BOM](https://en.wikipedia.org/wiki/Byte_order_mark)/charset problem. You could see the file...

For what I know jdtls cannot determine what jdk a project uses, it is written in the command that starts the jdtls server. nvim-jdtls does not expose any api either,...

The best idea would be to: * create a new module `lua/neotest-java/lsp/init.lua` and put the fetching logic there * modify the [binaries.lua](https://github.com/rcasia/neotest-java/blob/2b16cf2e052ad6decfc01f9fd55ca5f02c4387a6/lua/neotest-java/command/binaries.lua) to use the correct binary I have trying...