diff options
author | Blaž Hrastnik | 2022-03-23 01:39:24 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-28 02:02:26 +0000 |
commit | 92bb312f0fadc0cb60f51241a10d39783c020a3f (patch) | |
tree | 91cdbebeb66b121d7908d45f97a81427579fd6da /helix-term | |
parent | 96a4eb84838d4cbfb9313968278985ea1986a3bc (diff) |
Make line a private property
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/ui/picker.rs | 4 | ||||
-rw-r--r-- | helix-term/src/ui/prompt.rs | 6 |
2 files changed, 7 insertions, 3 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( diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index c3402f02..4daa33e5 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -19,7 +19,7 @@ pub type Completion = (RangeFrom<usize>, Cow<'static, str>); pub struct Prompt { prompt: Cow<'static, str>, - pub line: String, + line: String, cursor: usize, completion: Vec<Completion>, selection: Option<usize>, @@ -77,6 +77,10 @@ impl Prompt { } } + pub fn line(&self) -> &String { + &self.line + } + pub fn recalculate_completion(&mut self, editor: &Editor) { self.completion = (self.completion_fn)(editor, &self.line); } |