1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use crate::Editor;
use std::io::Write;
use termion::event::Key;

pub struct Event<'a, 'out: 'a, W: Write + 'a> {
    pub editor: &'a mut Editor<'out, W>,
    pub kind: EventKind,
}

impl<'a, 'out: 'a, W: Write + 'a> Event<'a, 'out, W> {
    pub fn new(editor: &'a mut Editor<'out, W>, kind: EventKind) -> Self {
        Event { editor, kind }
    }
}

#[derive(Debug)]
pub enum EventKind {
    /// Sent before handling a keypress.
    BeforeKey(Key),
    /// Sent after handling a keypress.
    AfterKey(Key),
    /// Sent in `Editor.complete()`, before processing the completion.
    BeforeComplete,
}