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
I am working on setting up a new Language Server for VS Code and am having some troubles with some incoming requests. It may be specific to workspace/* commands. When they are sent, a MethodNotFound response is sent.
it seems that the notification of 'server.OnDidChangeWatchedFiles' is denoted as 'didChangeWatchedFiles', while the name in standard LSP is 'textDocument/didOpen'. The same issue occur in 'OnDidChangeTextDocument' and 'OnDidOpenTextDocument'
I am working on setting up a new Language Server for VS Code and am having some troubles with some incoming requests. It may be specific to
workspace/*
commands. When they are sent, aMethodNotFound
response is sent.The logs look like this:
And the simplified logic of what I have running is this:
In theory, shouldn't the
server.OnDidChangeWatchedFiles
be called when theworkspace/didChangeWatchedFiles
request comes in?The text was updated successfully, but these errors were encountered: