intellij-lsp
intellij-lsp copied to clipboard
plugin not sending anything except didOpen, willSave and didChangeWatchedFiles after Initialized
Hi,
I'm trying to build a new LSP server for a custom language, I have successfully got the plugin connecting to the server but other than the 3 mentioned request, no other requests seem to go client->server, Is there an initialisation step I have not implemented?
https://gist.github.com/anz-gordonj7/0fcd0beaed4df64c458e1ae8f9c9a852 is a log of my applications output (err.log, simply displaying incoming request names) and the plugins request json log.
My understanding was that textDocument/documentSymbol would be requested automatically?
Thanks
I'll need to check, but I'm pretty sure I'm not sending a textDocument/documentSymbol request automatically, so this behavior is normal. Maybe that's an oversight from my part and I should do it, I'll try looking at what other clients do.
Experiencing the same behaviour when trying this client with the Erlang Language Server.
To be more specific, textdocument/definition requests are not sent to the server.
@gtache any updates?