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 0b9dbe7 commit 492d5e2Copy full SHA for 492d5e2
crates/ide-completion/src/completions/expr.rs
@@ -365,7 +365,7 @@ pub(crate) fn complete_expr_path(
365
add_keyword("false", "false");
366
367
if in_condition || in_block_expr {
368
- add_keyword("let mut", "let mut $0");
+ add_keyword("letm", "let mut $0");
369
add_keyword("let", "let $0");
370
}
371
crates/ide-completion/src/completions/keyword.rs
@@ -347,7 +347,7 @@ fn main() {
347
"#,
348
);
349
check_edit(
350
- "let mut",
+ "letm",
351
r#"
352
fn main() {
353
$0
0 commit comments