diff options
Diffstat (limited to 'crates/ra_analysis/src/completion')
-rw-r--r-- | crates/ra_analysis/src/completion/reference_completion.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/ra_analysis/src/completion/reference_completion.rs b/crates/ra_analysis/src/completion/reference_completion.rs index dd147a0e4..e52062107 100644 --- a/crates/ra_analysis/src/completion/reference_completion.rs +++ b/crates/ra_analysis/src/completion/reference_completion.rs | |||
@@ -177,10 +177,10 @@ fn complete_mod_item_snippets(acc: &mut Vec<CompletionItem>) { | |||
177 | lookup: Some("tfn".to_string()), | 177 | lookup: Some("tfn".to_string()), |
178 | snippet: Some( | 178 | snippet: Some( |
179 | "#[test]\n\ | 179 | "#[test]\n\ |
180 | fn ${1:feature}() {\n\ | 180 | fn ${1:feature}() {\n\ |
181 | $0\n\ | 181 | $0\n\ |
182 | }" | 182 | }" |
183 | .to_string() | 183 | .to_string(), |
184 | ), | 184 | ), |
185 | }); | 185 | }); |
186 | acc.push(CompletionItem { | 186 | acc.push(CompletionItem { |