Drop cx.view_id, it was used before we had cx.current.

imgbot
Blaž Hrastnik 3 years ago
parent 0e5b421646
commit fae2127a11

@ -37,7 +37,6 @@ use once_cell::sync::Lazy;
pub struct Context<'a> { pub struct Context<'a> {
pub count: usize, pub count: usize,
pub editor: &'a mut Editor, pub editor: &'a mut Editor,
pub view_id: ViewId,
pub callback: Option<crate::compositor::Callback>, pub callback: Option<crate::compositor::Callback>,
pub on_next_key_callback: Option<Box<dyn FnOnce(&mut Context, KeyEvent)>>, pub on_next_key_callback: Option<Box<dyn FnOnce(&mut Context, KeyEvent)>>,
@ -656,7 +655,7 @@ fn _search(doc: &mut Document, view: &mut View, contents: &str, regex: &Regex, e
// TODO: use one function for search vs extend // TODO: use one function for search vs extend
pub fn search(cx: &mut Context) { pub fn search(cx: &mut Context) {
let doc = cx.doc(); let (view, doc) = cx.current();
// TODO: could probably share with select_on_matches? // TODO: could probably share with select_on_matches?
@ -664,7 +663,7 @@ pub fn search(cx: &mut Context) {
// feed chunks into the regex yet // feed chunks into the regex yet
let contents = doc.text().slice(..).to_string(); let contents = doc.text().slice(..).to_string();
let view_id = cx.view_id; let view_id = view.id;
let prompt = ui::regex_prompt(cx, "search:".to_string(), move |view, doc, regex| { let prompt = ui::regex_prompt(cx, "search:".to_string(), move |view, doc, regex| {
let text = doc.text(); let text = doc.text();
let start = doc.selection(view.id).cursor(); let start = doc.selection(view.id).cursor();
@ -1739,12 +1738,12 @@ pub mod insert {
// storing it? // storing it?
pub fn undo(cx: &mut Context) { pub fn undo(cx: &mut Context) {
let view_id = cx.view_id; let view_id = cx.view().id;
cx.doc().undo(view_id); cx.doc().undo(view_id);
} }
pub fn redo(cx: &mut Context) { pub fn redo(cx: &mut Context) {
let view_id = cx.view_id; let view_id = cx.view().id;
cx.doc().redo(view_id); cx.doc().redo(view_id);
} }
@ -2272,8 +2271,9 @@ pub fn space_mode(cx: &mut Context) {
tokio::spawn(doc.save()); tokio::spawn(doc.save());
} }
'c' => { 'c' => {
let view_id = cx.view().id;
// close current split // close current split
cx.editor.close(cx.view_id, /* close_buffer */ false); cx.editor.close(view_id, /* close_buffer */ false);
} }
// ' ' => toggle_alternate_buffer(cx), // ' ' => toggle_alternate_buffer(cx),
// TODO: temporary since space mode took it's old key // TODO: temporary since space mode took it's old key

@ -530,7 +530,6 @@ impl Component for EditorView {
let mode = doc.mode(); let mode = doc.mode();
let mut cxt = commands::Context { let mut cxt = commands::Context {
view_id: view.id,
editor: &mut cx.editor, editor: &mut cx.editor,
count: 1, count: 1,
callback: None, callback: None,

Loading…
Cancel
Save