sl_liner/
event.rs

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 sl_console::event::Key;

/// Event has context about the state of the editor and the EventKind and is consumed by Completer
pub struct Event<'a, 'out: 'a> {
    pub editor: &'a mut Editor<'out>,
    pub kind: EventKind,
}

impl<'a, 'out: 'a> Event<'a, 'out> {
    pub fn new(editor: &'a mut Editor<'out>, 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,
}