aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/prompt.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2022-02-17 04:55:46 +0000
committerBlaž Hrastnik2022-02-17 05:02:42 +0000
commitaf21e2a5b491a18b22de7c99d96536bdaf741056 (patch)
tree807fc39fb87cd93c252b81fe76bb569a00532852 /helix-term/src/ui/prompt.rs
parente023a78919be31a9d9747d3735dfd29dd6c6605d (diff)
Pass through Editor instead of Context
Diffstat (limited to 'helix-term/src/ui/prompt.rs')
-rw-r--r--helix-term/src/ui/prompt.rs27
1 files changed, 15 insertions, 12 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs
index ff6b8c76..18b390dd 100644
--- a/helix-term/src/ui/prompt.rs
+++ b/helix-term/src/ui/prompt.rs
@@ -24,7 +24,7 @@ pub struct Prompt {
selection: Option<usize>,
history_register: Option<char>,
history_pos: Option<usize>,
- completion_fn: Box<dyn FnMut(&Context, &str) -> Vec<Completion>>,
+ completion_fn: Box<dyn FnMut(&Editor, &str) -> Vec<Completion>>,
callback_fn: Box<dyn FnMut(&mut Context, &str, PromptEvent)>,
pub doc_fn: Box<dyn Fn(&str) -> Option<&'static str>>,
}
@@ -59,7 +59,7 @@ impl Prompt {
pub fn new(
prompt: Cow<'static, str>,
history_register: Option<char>,
- completion_fn: impl FnMut(&Context, &str) -> Vec<Completion> + 'static,
+ completion_fn: impl FnMut(&Editor, &str) -> Vec<Completion> + 'static,
callback_fn: impl FnMut(&mut Context, &str, PromptEvent) + 'static,
) -> Self {
Self {
@@ -76,6 +76,10 @@ impl Prompt {
}
}
+ pub fn recalculate_completion(&mut self, editor: &Editor) {
+ self.completion = (self.completion_fn)(editor, &self.line);
+ }
+
/// Compute the cursor position after applying movement
/// Taken from: https://github.com/wez/wezterm/blob/e0b62d07ca9bf8ce69a61e30a3c20e7abc48ce7e/termwiz/src/lineedit/mod.rs#L516-L611
fn eval_movement(&self, movement: Movement) -> usize {
@@ -183,7 +187,7 @@ impl Prompt {
if let Ok(Some(pos)) = cursor.next_boundary(&self.line, 0) {
self.cursor = pos;
}
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
self.exit_selection();
}
@@ -211,7 +215,7 @@ impl Prompt {
self.cursor = pos;
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn delete_char_forwards(&mut self, cx: &Context) {
@@ -219,7 +223,7 @@ impl Prompt {
self.line.replace_range(self.cursor..pos, "");
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn delete_word_backwards(&mut self, cx: &Context) {
@@ -228,7 +232,7 @@ impl Prompt {
self.cursor = pos;
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn delete_word_forwards(&mut self, cx: &Context) {
@@ -236,7 +240,7 @@ impl Prompt {
self.line.replace_range(self.cursor..pos, "");
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn kill_to_start_of_line(&mut self, cx: &Context) {
@@ -245,7 +249,7 @@ impl Prompt {
self.cursor = pos;
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn kill_to_end_of_line(&mut self, cx: &Context) {
@@ -253,13 +257,13 @@ impl Prompt {
self.line.replace_range(self.cursor..pos, "");
self.exit_selection();
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
}
pub fn clear(&mut self, cx: &Context) {
self.line.clear();
self.cursor = 0;
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
self.exit_selection();
}
@@ -474,7 +478,7 @@ impl Component for Prompt {
}
key!(Enter) => {
if self.selection.is_some() && self.line.ends_with(std::path::MAIN_SEPARATOR) {
- self.completion = (self.completion_fn)(cx, &self.line);
+ self.recalculate_completion(cx.editor);
self.exit_selection();
} else {
(self.callback_fn)(cx, &self.line, PromptEvent::Validate);
@@ -525,7 +529,6 @@ impl Component for Prompt {
}
fn render(&mut self, area: Rect, surface: &mut Surface, cx: &mut Context) {
- self.completion = (self.completion_fn)(cx, &self.line);
self.render_prompt(area, surface, cx)
}