-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Language Server Protocol: ShowMessage Request feature #1794
Comments
This issue has been discussed with @xcoulon who wanted to work on it. After studying the specification https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#showmessage-request we think that there is some missing parts in order for the IDE to properly handle the The specification is mentioning certain actions: retry, show logs. This list of actions is not exhaustive and not normalized (meaning, all LS implementation are supposely able to send different type of actions). In order to move forward, we have studied existing LS (for JDT + sourcegraph), but we have not found any use of this. For the time being - in order to start the implementation this issue needs:
|
Linked to question: microsoft/language-server-protocol#130 |
I'm starting work on this. |
Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
…is test LS enabled Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
* #1794 implement 'ShowMessageRequest'
New: The show message request is sent from a server to a client to ask the client to display a particular message in the user interface. In addition to the show message notification the request allows to pass actions and to wait for an answer from the client.
https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#showmessage-request
The text was updated successfully, but these errors were encountered: