LSP: Support multiple langauge servers for goto references

This refactors goto_reference like the parent commit to query all
language servers supporting the feature.
This commit is contained in:
Michael Davis 2025-01-30 10:04:01 -05:00
parent f7394d53fd
commit 1a821ac726
No known key found for this signature in database

View file

@ -985,12 +985,11 @@ pub fn goto_implementation(cx: &mut Context) {
pub fn goto_reference(cx: &mut Context) { pub fn goto_reference(cx: &mut Context) {
let config = cx.editor.config(); let config = cx.editor.config();
let (view, doc) = current!(cx.editor); let (view, doc) = current_ref!(cx.editor);
// TODO could probably support multiple language servers, let mut futures: FuturesOrdered<_> = doc
// not sure if there's a real practical use case for this though .language_servers_with_feature(LanguageServerFeature::GotoReference)
let language_server = .map(|language_server| {
language_server_with_feature!(cx.editor, doc, LanguageServerFeature::GotoReference);
let offset_encoding = language_server.offset_encoding(); let offset_encoding = language_server.offset_encoding();
let pos = doc.position(view.id, offset_encoding); let pos = doc.position(view.id, offset_encoding);
let future = language_server let future = language_server
@ -1001,22 +1000,32 @@ pub fn goto_reference(cx: &mut Context) {
None, None,
) )
.unwrap(); .unwrap();
async move {
cx.callback( let json = future.await?;
future, let locations: Vec<lsp::Location> = serde_json::from_value(json)?;
move |editor, compositor, response: Option<Vec<lsp::Location>>| { anyhow::Ok((locations, offset_encoding))
let items: Vec<Location> = response }
.into_iter() })
.flatten()
.flat_map(|location| lsp_location_to_location(location, offset_encoding))
.collect(); .collect();
if items.is_empty() {
cx.jobs.callback(async move {
let mut locations = Vec::new();
while let Some((lsp_locations, offset_encoding)) = futures.try_next().await? {
locations.extend(
lsp_locations
.into_iter()
.flat_map(|location| lsp_location_to_location(location, offset_encoding)),
);
}
let call = move |editor: &mut Editor, compositor: &mut Compositor| {
if locations.is_empty() {
editor.set_error("No references found."); editor.set_error("No references found.");
} else { } else {
goto_impl(editor, compositor, items); goto_impl(editor, compositor, locations);
} }
}, };
); Ok(Callback::EditorCompositor(Box::new(call)))
});
} }
pub fn signature_help(cx: &mut Context) { pub fn signature_help(cx: &mut Context) {