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 28077f9 commit 102b7f0Copy full SHA for 102b7f0
crates/rust-analyzer/src/main_loop/handlers.rs
@@ -1186,7 +1186,7 @@ fn to_runnable_action(
1186
runnable: Runnable,
1187
) -> Option<lsp_ext::CommandLinkGroup> {
1188
let cargo_spec = CargoTargetSpec::for_file(&snap, file_id).ok()?;
1189
- if should_skip_target(&runnable, cargo_spec.as_ref()) {
+ if !snap.config.hover.runnable() || should_skip_target(&runnable, cargo_spec.as_ref()) {
1190
return None;
1191
}
1192
0 commit comments