We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05229dd commit b330b61Copy full SHA for b330b61
lua/blink/cmp/fuzzy/fuzzy.rs
@@ -72,7 +72,7 @@ pub fn fuzzy(
72
73
// Find the highest score and filter out matches that are unreasonably lower than it
74
let max_score = matches.iter().map(|mtch| mtch.score).max().unwrap_or(0);
75
- let secondary_min_score = max_score.max(4) - 4;
+ let secondary_min_score = max_score.max(16) - 16;
76
matches = matches
77
.into_iter()
78
.filter(|mtch| mtch.score >= secondary_min_score)
0 commit comments