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 2174aca commit 9914d30Copy full SHA for 9914d30
crates/rust-analyzer/src/to_proto.rs
@@ -1164,7 +1164,10 @@ pub(crate) fn code_lens(
1164
let r = runnable(snap, run)?;
1165
1166
let lens_config = snap.config.lens();
1167
- if lens_config.run && client_commands_config.run_single && r.args.workspace_root.is_some() {
+ if lens_config.run
1168
+ && client_commands_config.run_single
1169
+ && r.args.workspace_root.is_some()
1170
+ {
1171
let command = command::run_single(&r, &title);
1172
acc.push(lsp_types::CodeLens {
1173
range: annotation_range,
0 commit comments