You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I understand it correctly, SyncLanguageServer currently supports only a few API methods directly: request_definition, request_references, request_completions, request_document_symbols, request_hover.
For everyhing else user should use SyncLanguageServer.language_server.server.send.
Would be great to attach some example to the documentation on how to do so. Perhaps in a form of test and just refer to it.
The text was updated successfully, but these errors were encountered:
Andrej730
changed the title
Add more low-level LanguageServer.send example to the documentation
Add a more low-level LanguageServer.send example to the documentation
Mar 23, 2025
This is a great example. You can create a PR for the same, and I would be happy to add it. It would actually be ideal if we could get all lsp method implemented, but it will take time, and in the meanwhile, this provides a good middle-ground for those still interested in using the multilspy configurations.
If I understand it correctly,
SyncLanguageServer
currently supports only a few API methods directly: request_definition, request_references, request_completions, request_document_symbols, request_hover.For everyhing else user should use
SyncLanguageServer.language_server.server.send
.Would be great to attach some example to the documentation on how to do so. Perhaps in a form of test and just refer to it.
I'll attach a simple example below.
The text was updated successfully, but these errors were encountered: