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 status;
12pub mod style;
13pub mod theme;
14
15pub use key::{KeyCode, KeyEvent, KeyModifiers};
16pub use keymap::{KeyPattern, Keymap, PagerAction, parse_key, parse_sequence};