aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_ide_api/src/completion/complete_postfix.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/completion/complete_postfix.rs b/crates/ra_ide_api/src/completion/complete_postfix.rs
index a3e9e5f46..99fed8689 100644
--- a/crates/ra_ide_api/src/completion/complete_postfix.rs
+++ b/crates/ra_ide_api/src/completion/complete_postfix.rs
@@ -13,7 +13,7 @@ use crate::{
13}; 13};
14 14
15pub(super) fn complete_postfix(acc: &mut Completions, ctx: &CompletionContext) { 15pub(super) fn complete_postfix(acc: &mut Completions, ctx: &CompletionContext) {
16 if ctx.db.feature_flags.get("completions.enable-postfix") == false { 16 if ctx.db.feature_flags.get("completion.enable-postfix") == false {
17 return; 17 return;
18 } 18 }
19 19