Ruin0x11/lsp-intellij

Compatibility with eglot?

jojojames opened this issue · 2 comments

https://github.com/joaotavora/eglot has been started up recently and it'd be super cool to have lsp-intellij work with eglot seemlessly too.

Not sure if there's anything special in lsp-intellij but I thought I'd bring it to your attention!

Thanks!

Seems interesting, thanks. One issue I can think of is getting the LSP server to start/stop from a command. The current way of starting a process is weird - a call is made to sh or batch that does nothing, then the client is connected over TCP. This must be done because lsp-mode requires a process to start a server, even if the server is running. So some way of properly starting/stopping/restarting the server would be needed to handle the automatic management feature of eglot.

Thanks, sounds good. I'll do my best to test anything.