We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad9234f commit 88bc4f1Copy full SHA for 88bc4f1
crates/rust-analyzer/src/handlers.rs
@@ -1510,7 +1510,7 @@ fn show_ref_command_link(
1510
snap: &GlobalStateSnapshot,
1511
position: &FilePosition,
1512
) -> Option<lsp_ext::CommandLinkGroup> {
1513
- if snap.config.hover().implementations {
+ if snap.config.hover().references {
1514
if let Some(ref_search_res) = snap.analysis.find_all_refs(*position, None).unwrap_or(None) {
1515
let uri = to_proto::url(snap, position.file_id);
1516
let line_index = snap.file_line_index(position.file_id).ok()?;
0 commit comments