diff options
Diffstat (limited to 'helix-term/src/ui/picker.rs')
-rw-r--r-- | helix-term/src/ui/picker.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index e5498583..a1a22c71 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -339,7 +339,7 @@ impl<T> Picker<T> { pub fn score(&mut self) { let now = Instant::now(); - let pattern = &self.prompt.line; + let pattern = self.prompt.line(); if pattern == &self.previous_pattern { return; @@ -607,7 +607,7 @@ impl<T: 'static> Component for Picker<T> { let (_score, highlights) = self .matcher - .fuzzy_indices(&formatted, &self.prompt.line) + .fuzzy_indices(&formatted, self.prompt.line()) .unwrap_or_default(); surface.set_string_truncated( |