-
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: Rename feature #1806
Comments
The result of rename is list changes that we should apply to files over workspace, I'm not sure that client(browser) is right place to do that. We need to thick how apply that changes on server(ws-agent). |
@evidolob From the spec, I can't say if the delta you get back is describing an edit that has happened on the back end or if it's a "todo" for the client. Do you have more info? |
@evidolob I think you are correct. However, we do have an agent in the workspace that could execute the change. We don't really have to have the exact same protocol between the che ide and the language server api ws-agent and the individual language server implementations. Not sure where filed buffers live in che, though. |
Note that implementing infrastructure for applying workspace edits would also benefit #3957 |
This issue depends on #5955 pull request |
Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
Signed-off-by: Yevhen Vydolob <[email protected]>
* #1806 add service and UI for rename feature Signed-off-by: Yevhen Vydolob <[email protected]>
The rename request is sent from the client to the server to do a workspace wide rename of a symbol.
https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#rename
The text was updated successfully, but these errors were encountered: