diff options
author | Aleksey Kladov <[email protected]> | 2020-03-06 17:32:40 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-06 17:35:30 +0000 |
commit | 95a2755aa80aaf9119e172f6b2a61eeb04653eba (patch) | |
tree | 7f2ee6258f8f2bd61ff2275e327de5b03bdef961 /crates/ra_ide_db | |
parent | 3ff170d65872d9965c4bd88184701d957f23570e (diff) |
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.
Diffstat (limited to 'crates/ra_ide_db')
-rw-r--r-- | crates/ra_ide_db/src/feature_flags.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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 { | |||
56 | ("completion.insertion.add-call-parenthesis", true), | 56 | ("completion.insertion.add-call-parenthesis", true), |
57 | ("completion.insertion.add-argument-sippets", true), | 57 | ("completion.insertion.add-argument-sippets", true), |
58 | ("completion.enable-postfix", true), | 58 | ("completion.enable-postfix", true), |
59 | ("call-info.full", true), | ||
59 | ("notifications.workspace-loaded", true), | 60 | ("notifications.workspace-loaded", true), |
60 | ("notifications.cargo-toml-not-found", true), | 61 | ("notifications.cargo-toml-not-found", true), |
61 | ]) | 62 | ]) |