diff --git a/crates/ide/src/lib.rs b/crates/ide/src/lib.rs
index 57f3581b6bd..64536959793 100644
--- a/crates/ide/src/lib.rs
+++ b/crates/ide/src/lib.rs
@@ -382,6 +382,14 @@ impl Analysis {
self.with_db(|db| hover::hover(db, position, links_in_hover, markdown))
}
+ /// Return URL(s) for the documentation of the symbol under the cursor.
+ pub fn get_doc_url(
+ &self,
+ position: FilePosition,
+ ) -> Cancelable