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
{{ message }}
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
#1492 uses the workspace/configuration call back to the client in order to fetch the configuration earlier than the client would normally send it.
Unfortunately, I missed the fact that this functionality is optional and needs to be gated against a client capability.
/** * Workspace specific client capabilities. */exportinterfaceWorkspaceClientCapabilities{// .../** * The client supports `workspace/configuration` requests. * * Since 3.6.0 */configuration?: boolean;
If the client doesn't say it has this request, we can't call it and have to resort to the double-reload configuration change (if we want to really get rid of searchPaths in the initialization options).
The text was updated successfully, but these errors were encountered:
#1492 uses the
workspace/configuration
call back to the client in order to fetch the configuration earlier than the client would normally send it.Unfortunately, I missed the fact that this functionality is optional and needs to be gated against a client capability.
If the client doesn't say it has this request, we can't call it and have to resort to the double-reload configuration change (if we want to really get rid of
searchPaths
in the initialization options).The text was updated successfully, but these errors were encountered: