Add support for rename with language servers that lack prepareRename (#23000)
This adds support for LSPs that use the old rename flow which does not first ask the LSP for the rename range and check that it is a valid range to rename. Closes #16663 Release Notes: * Fixed rename symbols action when the language server does not have the capability to prepare renames - such as `luau-lsp`.
This commit is contained in:
parent
b65dc8c566
commit
bda0c67ece
7 changed files with 268 additions and 66 deletions
|
@ -4135,7 +4135,10 @@ async fn test_rename(cx: &mut gpui::TestAppContext) {
|
|||
.next()
|
||||
.await
|
||||
.unwrap();
|
||||
let range = response.await.unwrap().unwrap();
|
||||
let response = response.await.unwrap();
|
||||
let PrepareRenameResponse::Success(range) = response else {
|
||||
panic!("{:?}", response);
|
||||
};
|
||||
let range = buffer.update(cx, |buffer, _| range.to_offset(buffer));
|
||||
assert_eq!(range, 6..9);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue