what are the handlers that are currently supported by the lsp server? #76518
-
I've been trying to call DidChangeWatchedFiles Notification in neovim, but i get the error: not found: "workspace/didChangeWatchedFiles" request handler for client "roslyn" |
Beta Was this translation helpful? Give feedback.
Answered by
CyrusNajmabadi
Dec 19, 2024
Replies: 1 comment
-
We don't have a fixed list. You'd have to examine the source code to find out. Our server also reports its capabilities, for parts of the spec that are optional so that the client can know. Here's the code for our handlers: https://github.com/dotnet/roslyn/tree/main/src/LanguageServer/Protocol/Handler |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Wordluc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't have a fixed list. You'd have to examine the source code to find out.
Our server also reports its capabilities, for parts of the spec that are optional so that the client can know.
Here's the code for our handlers: https://github.com/dotnet/roslyn/tree/main/src/LanguageServer/Protocol/Handler