rmut_front/lib.rs
1//! What every rmut front end needs and no toolkit provides: the key
2//! vocabulary, the keymap over [`rmut_session::Function`], and (as
3//! the rounds move it here) the layout and formatting that turn a
4//! session into rows of text. Nothing in here draws.
5
6pub mod editor;
7pub mod index;
8pub mod key;
9pub mod keymap;
10pub mod pager;
11pub mod signals;
12pub mod status;
13pub mod style;
14pub mod theme;
15
16pub use key::{EscPrefix, KeyCode, KeyEvent, KeyModifiers};
17pub use keymap::{KeyPattern, Keymap, PagerAction, parse_key, parse_sequence, resolve_function};