diff options
-rw-r--r-- | crates/ra_analysis/src/completion/mod.rs | 4 | ||||
-rw-r--r-- | crates/ra_analysis/src/completion/reference_completion.rs | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/crates/ra_analysis/src/completion/mod.rs b/crates/ra_analysis/src/completion/mod.rs index c7717ab61..839fae641 100644 --- a/crates/ra_analysis/src/completion/mod.rs +++ b/crates/ra_analysis/src/completion/mod.rs | |||
@@ -432,7 +432,7 @@ mod tests { | |||
432 | // check_snippet_completion(r" | 432 | // check_snippet_completion(r" |
433 | // <|> | 433 | // <|> |
434 | // ", | 434 | // ", |
435 | // r##"[CompletionItem { label: "tfn", lookup: None, snippet: Some("#[test]\nfn $1() {\n $0\n}") }]"##, | 435 | // r##"[CompletionItem { label: "Test function", lookup: None, snippet: Some("#[test]\nfn test_${1:feature}() {\n$0\n}"##, |
436 | // ); | 436 | // ); |
437 | check_snippet_completion(r" | 437 | check_snippet_completion(r" |
438 | #[cfg(test)] | 438 | #[cfg(test)] |
@@ -440,7 +440,7 @@ mod tests { | |||
440 | <|> | 440 | <|> |
441 | } | 441 | } |
442 | ", | 442 | ", |
443 | r##"[CompletionItem { label: "tfn", lookup: None, snippet: Some("#[test]\nfn $1() {\n $0\n}") }, | 443 | r##"[CompletionItem { label: "Test function", lookup: None, snippet: Some("#[test]\nfn test_${1:feature}() {\n$0\n}") }, |
444 | CompletionItem { label: "pub(crate)", lookup: None, snippet: Some("pub(crate) $0") }]"##, | 444 | CompletionItem { label: "pub(crate)", lookup: None, snippet: Some("pub(crate) $0") }]"##, |
445 | ); | 445 | ); |
446 | } | 446 | } |
diff --git a/crates/ra_analysis/src/completion/reference_completion.rs b/crates/ra_analysis/src/completion/reference_completion.rs index d301a3c02..e8eb77440 100644 --- a/crates/ra_analysis/src/completion/reference_completion.rs +++ b/crates/ra_analysis/src/completion/reference_completion.rs | |||
@@ -173,9 +173,12 @@ fn complete_path( | |||
173 | 173 | ||
174 | fn complete_mod_item_snippets(acc: &mut Vec<CompletionItem>) { | 174 | fn complete_mod_item_snippets(acc: &mut Vec<CompletionItem>) { |
175 | acc.push(CompletionItem { | 175 | acc.push(CompletionItem { |
176 | label: "tfn".to_string(), | 176 | label: "Test function".to_string(), |
177 | lookup: None, | 177 | lookup: None, |
178 | snippet: Some("#[test]\nfn $1() {\n $0\n}".to_string()), | 178 | snippet: Some("#[test]\n\ |
179 | fn test_${1:feature}() {\n\ | ||
180 | $0\n\ | ||
181 | }".to_string()), | ||
179 | }); | 182 | }); |
180 | acc.push(CompletionItem { | 183 | acc.push(CompletionItem { |
181 | label: "pub(crate)".to_string(), | 184 | label: "pub(crate)".to_string(), |