From 811f952a41177242f7dfa4d66f2b16157f918718 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Wed, 14 Apr 2021 15:21:49 +0900 Subject: Center search results. --- helix-term/src/ui/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'helix-term/src/ui') diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 57c08ddf..d9a05a9c 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -20,7 +20,7 @@ pub use tui::layout::Rect; pub use tui::style::{Color, Modifier, Style}; use helix_core::regex::Regex; -use helix_view::{Document, Editor}; +use helix_view::{View, Document, Editor}; use std::path::{Path, PathBuf}; @@ -33,7 +33,7 @@ pub fn text_color() -> Style { pub fn regex_prompt( cx: &mut crate::commands::Context, prompt: String, - fun: impl Fn(&mut Document, Regex) + 'static, + fun: impl Fn(&mut View, &mut Document, Regex) + 'static, ) -> Prompt { let view_id = cx.view().id; let snapshot = cx.doc().selection(view_id).clone(); @@ -65,7 +65,7 @@ pub fn regex_prompt( // TODO: also revert text doc.set_selection(view.id, snapshot.clone()); - fun(doc, regex); + fun(view, doc, regex); view.ensure_cursor_in_view(doc); } -- cgit v1.2.3-70-g09d2