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
The notification is sent by default if both client capability workspace.workspaceFolders and the server capability workspace.workspaceFolders.supported are true;
So worksSpace folders should be set to false for ElixirLS (until support is added)
The text was updated successfully, but these errors were encountered:
* Do not advertise workspaceFolder support
In #295 the user received a
warning:
> Received unmatched notification: %{"jsonrpc" => "2.0", "method" =>
"workspace/didChangeWorkspaceFolders"
This occurs because the server advertises that it supports workspace folders:
https://microsoft.github.io/language-server-protocol/specification#workspace_workspaceFolders
This was introduced in #35 which was
actually about didChangeWatchedFiles and not workspace folders.
Fixes#296
* Update changelog
From #295 there is the log:
From https://microsoft.github.io/language-server-protocol/specification#workspace_didChangeWorkspaceFolders we see:
So worksSpace folders should be set to
false
for ElixirLS (until support is added)The text was updated successfully, but these errors were encountered: