Results 13 comments of Vsevolod

> Thanks - in general a nice contribution! Just some nits and I would not use `personallySigned`but `personalSigned` renamed

What's probably worth mentioning, is that when I replace my setup configuration: ```lua require("lspconfig").jdtls.setup { root_markers = { ".git" }, settings = { java = { configuration = { runtimes...

That's definitely possible, but I spent several hours yesterday trying to tweak my configuration to no avail. That's why came here for help :) Here is a related chunk of...

Okay, tried without SDKMAN JDKs. here is new simplified configuration: ```lua require("java").setup { root_markers = { ".git", }, } require("neoconf").setup {} require("lspconfig").jdtls.setup { root_markers = { ".git" }, settings =...

Using `root_markers = { ".git" }`, because for multi-module projects, without this language server uses each module as root (since each module contains own `pom.xml`), while I want single server...

Tried to use your fork like so: ```lua { "logrusx/nvim-java", branch = "use-latest-versions-available-in-mason-registry", dependencies = { { "logrusx/nvim-java-core", branch = "migrate-to-official-mason-repo", }, }, } ``` As expected, on the next...

Did clean rebuild as described in https://github.com/nvim-java/nvim-java/wiki/Troubleshooting#no_entry-how-to-clean-rebuild. The same error message. Let me log an issue in your fork, then.

As a person who uses bookmarks and likes to structure them by folder, want to add my five cents to this issue. It would be great to have the following...

I understand that my (2) is different to the issue itself, but I had some inspiration and tried coding it. When you have time, please take a look at the...

hey guys, any ideas how to create > * A command for closing child tabs along with the targeted tab. similarly to @ferreum trick above? The problem I encountered is,...