From 95a2755aa80aaf9119e172f6b2a61eeb04653eba Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 18:32:40 +0100 Subject: Concise mode for parameter hints This works around VS Code bug where it tries to cram everything in a tiny popup, and brings experience closer to Intellij. --- crates/ra_ide_db/src/feature_flags.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/ra_ide_db/src') diff --git a/crates/ra_ide_db/src/feature_flags.rs b/crates/ra_ide_db/src/feature_flags.rs index d9c9d6cd2..74a3a1cd9 100644 --- a/crates/ra_ide_db/src/feature_flags.rs +++ b/crates/ra_ide_db/src/feature_flags.rs @@ -56,6 +56,7 @@ impl Default for FeatureFlags { ("completion.insertion.add-call-parenthesis", true), ("completion.insertion.add-argument-sippets", true), ("completion.enable-postfix", true), + ("call-info.full", true), ("notifications.workspace-loaded", true), ("notifications.cargo-toml-not-found", true), ]) -- cgit v1.2.3 From 80909f7698edd972e7bb7e3b255c9a12d78cd9a6 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 6 Mar 2020 18:38:56 +0100 Subject: Don't creat public APIs with typos --- crates/ra_ide_db/src/feature_flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/ra_ide_db/src') diff --git a/crates/ra_ide_db/src/feature_flags.rs b/crates/ra_ide_db/src/feature_flags.rs index 74a3a1cd9..968415072 100644 --- a/crates/ra_ide_db/src/feature_flags.rs +++ b/crates/ra_ide_db/src/feature_flags.rs @@ -54,7 +54,7 @@ impl Default for FeatureFlags { FeatureFlags::new(&[ ("lsp.diagnostics", true), ("completion.insertion.add-call-parenthesis", true), - ("completion.insertion.add-argument-sippets", true), + ("completion.insertion.add-argument-snippets", true), ("completion.enable-postfix", true), ("call-info.full", true), ("notifications.workspace-loaded", true), -- cgit v1.2.3