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
Reply to all requests (sublimelsp#909)
* Reply to all requests
- When there's no request handler, reply with an error with code MethodNotFound
- When there's an exception thrown in the request handler, translate that
exception to an error response.
- When there's an exception of type Error thrown in the request handler,
send that error as-is.
Quoting the JSON-RPC 2.0 spec, which LSP is based on:
When a rpc call is made, the Server MUST reply with a Response,
except for in the case of Notifications.