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
Tried the other applicable steps from the Troubleshooting Guide
Completed the Problem Description, Steps to Reproduce and Version sections below
Problem Description
When a workspace/executeCommand request is made to the completions plugin, the spyder doesn't handle the response from the executed command. This unexpected behavior happens due to the fact that there is no handler method defined for this request as the spyder's LSP completion plugin architecture requires.
What steps reproduce the problem?
Make a workspace/executeCommand request with a command to the completion plugin to a language server that sends the response from the command;
Spyder ignores the response.
What is the expected output? What do you see instead?
It is expected that the spyder allows catching the response for the executed command as specified by the Language Server Protocol:
The arguments are typically specified when a command is returned from the server to the client. Example requests that return a command are textDocument/codeAction or textDocument/codeLens.
Response: * result: any | null * error: code and message set in case an exception happens during the request.
Issue Report Checklist
conda update spyder
(orpip
, if not using Anaconda)jupyter qtconsole
(if console-related)spyder --reset
Problem Description
When a
workspace/executeCommand
request is made to the completions plugin, the spyder doesn't handle the response from the executed command. This unexpected behavior happens due to the fact that there is no handler method defined for this request as the spyder's LSP completion plugin architecture requires.What steps reproduce the problem?
workspace/executeCommand
request with a command to the completion plugin to a language server that sends the response from the command;What is the expected output? What do you see instead?
It is expected that the spyder allows catching the response for the executed command as specified by the Language Server Protocol:
Versions
Dependencies
The text was updated successfully, but these errors were encountered: