From d95d2784da05988bf09bcbf83c460e34030b9362 Mon Sep 17 00:00:00 2001 From: Tongjun Gao Date: Thu, 6 Mar 2025 10:14:39 +0800 Subject: [PATCH] Adjust relevance scoring threshold to consistent with existing implementations --- src/tools/rust-analyzer/crates/ide-completion/src/item.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rust-analyzer/crates/ide-completion/src/item.rs b/src/tools/rust-analyzer/crates/ide-completion/src/item.rs index b3dd8a8d06eb..ea52d69c7952 100644 --- a/src/tools/rust-analyzer/crates/ide-completion/src/item.rs +++ b/src/tools/rust-analyzer/crates/ide-completion/src/item.rs @@ -350,7 +350,7 @@ impl CompletionRelevance { /// some threshold such that we think it is especially likely /// to be relevant. pub fn is_relevant(&self) -> bool { - self.score() > 0 + self.score() > (!0 / 2) } }