aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-01-09 14:16:39 +0000
committerGitHub <[email protected]>2020-01-09 14:16:39 +0000
commitcf5bdf464cad7ceb9a67e07985a3f4d3799ec0b6 (patch)
treeba52dfcf74bc4a70ff63354614f42e24c3786758 /crates/ra_ide/src
parent3263c7076613bf8c3c32bb2bd5be29f10eb0284c (diff)
parent11caebe6cea4d0ec51a1b886280f8c53548eda8e (diff)
Merge pull request #2732 from detrumi/cargo-toml-not-found-message-toggle
Flag to hide cargo.toml not found error
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r--crates/ra_ide/src/feature_flags.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_ide/src/feature_flags.rs b/crates/ra_ide/src/feature_flags.rs
index de4ae513d..85617640d 100644
--- a/crates/ra_ide/src/feature_flags.rs
+++ b/crates/ra_ide/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.enable-postfix", true), 57 ("completion.enable-postfix", true),
58 ("notifications.workspace-loaded", true), 58 ("notifications.workspace-loaded", true),
59 ("notifications.cargo-toml-not-found", true),
59 ]) 60 ])
60 } 61 }
61} 62}