From 21f40f2b8f2d2ce19c2bc69201e99503a8d15e04 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 17:44:30 +0100 Subject: Fix comment order --- crates/ra_ide/src/completion/presentation.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/ra_ide/src/completion/presentation.rs') diff --git a/crates/ra_ide/src/completion/presentation.rs b/crates/ra_ide/src/completion/presentation.rs index dac232a85..e623c47ec 100644 --- a/crates/ra_ide/src/completion/presentation.rs +++ b/crates/ra_ide/src/completion/presentation.rs @@ -103,7 +103,7 @@ impl Completions { } }; - // If not an import, add parenthesis automatically. + // Add `<>` for generic types if ctx.is_path_type && !ctx.has_type_args && ctx.db.feature_flags.get("completion.insertion.add-call-parenthesis") @@ -211,7 +211,7 @@ impl Completions { .set_deprecated(is_deprecated(func, ctx.db)) .detail(function_signature.to_string()); - // Add `<>` for generic types + // If not an import, add parenthesis automatically. if ctx.use_item_syntax.is_none() && !ctx.is_call && ctx.db.feature_flags.get("completion.insertion.add-call-parenthesis") -- cgit v1.2.3 From 4e7f6c235489eb40c85bb73e75beead3ea7f08c7 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 17:51:10 +0100 Subject: Feature flag for arg snippets --- crates/ra_ide/src/completion/presentation.rs | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'crates/ra_ide/src/completion/presentation.rs') diff --git a/crates/ra_ide/src/completion/presentation.rs b/crates/ra_ide/src/completion/presentation.rs index e623c47ec..841d36c8f 100644 --- a/crates/ra_ide/src/completion/presentation.rs +++ b/crates/ra_ide/src/completion/presentation.rs @@ -221,16 +221,25 @@ impl Completions { let (snippet, label) = if params.is_empty() || has_self_param && params.len() == 1 { (format!("{}()$0", name), format!("{}()", name)) } else { - let to_skip = if has_self_param { 1 } else { 0 }; - let function_params_snippet = - join( + let snippet = if ctx + .db + .feature_flags + .get("completion.insertion.add-argument-sippets") + { + let to_skip = if has_self_param { 1 } else { 0 }; + let function_params_snippet = join( function_signature.parameter_names.iter().skip(to_skip).enumerate().map( |(index, param_name)| format!("${{{}:{}}}", index + 1, param_name), ), ) .separator(", ") .to_string(); - (format!("{}({})$0", name, function_params_snippet), format!("{}(…)", name)) + format!("{}({})$0", name, function_params_snippet) + } else { + format!("{}($0)", name) + }; + + (snippet, format!("{}(…)", name)) }; builder = builder.lookup_by(name).label(label).insert_snippet(snippet); } -- cgit v1.2.3 From 3ff170d65872d9965c4bd88184701d957f23570e Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 17:56:51 +0100 Subject: Trigger parameter info automatically See https://github.com/Microsoft/vscode/issues/64023 --- crates/ra_ide/src/completion/presentation.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/ra_ide/src/completion/presentation.rs') diff --git a/crates/ra_ide/src/completion/presentation.rs b/crates/ra_ide/src/completion/presentation.rs index 841d36c8f..d6196a5ce 100644 --- a/crates/ra_ide/src/completion/presentation.rs +++ b/crates/ra_ide/src/completion/presentation.rs @@ -221,6 +221,7 @@ impl Completions { let (snippet, label) = if params.is_empty() || has_self_param && params.len() == 1 { (format!("{}()$0", name), format!("{}()", name)) } else { + builder = builder.trigger_call_info(); let snippet = if ctx .db .feature_flags -- cgit v1.2.3