Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/ssr.rs')
-rw-r--r--crates/ide/src/ssr.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/ide/src/ssr.rs b/crates/ide/src/ssr.rs
index 6142a0eafd..ba9a7f62e6 100644
--- a/crates/ide/src/ssr.rs
+++ b/crates/ide/src/ssr.rs
@@ -45,6 +45,7 @@ pub(crate) fn ssr_assists(
group: Some(GroupLabel("Apply SSR".into())),
target: comment_range,
source_change,
+ trigger_signature_help: false,
};
ssr_assists.push(assist);
@@ -140,6 +141,7 @@ mod tests {
is_snippet: false,
},
),
+ trigger_signature_help: false,
}
"#]]
.assert_debug_eq(&apply_in_file_assist);
@@ -186,6 +188,7 @@ mod tests {
is_snippet: false,
},
),
+ trigger_signature_help: false,
}
"#]]
.assert_debug_eq(&apply_in_workspace_assist);
@@ -225,6 +228,7 @@ mod tests {
),
target: 10..21,
source_change: None,
+ trigger_signature_help: false,
}
"#]]
.assert_debug_eq(&apply_in_file_assist);
@@ -244,6 +248,7 @@ mod tests {
),
target: 10..21,
source_change: None,
+ trigger_signature_help: false,
}
"#]]
.assert_debug_eq(&apply_in_workspace_assist);