aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/feature_flags.rs
diff options
context:
space:
mode:
authorWilco Kusee <[email protected]>2020-01-03 14:04:54 +0000
committerWilco Kusee <[email protected]>2020-01-03 14:04:54 +0000
commite7bb82c3a494e08cbcd283b8292579a9cf0bb1a3 (patch)
tree8d47f5c3efb1260bc7dc0b75c824613afa5b069b /crates/ra_ide/src/feature_flags.rs
parent6c321d7318b94ee93dc60dc88d1e68afa94e8c4f (diff)
Allow disabling Cargo.toml not found error
Diffstat (limited to 'crates/ra_ide/src/feature_flags.rs')
-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}