1 2 3 4 5 6 7 8 9 10 11 12
#![allow(clippy::needless_range_loop)]
#![doc = include_str!("../README.md")]
mod cursor;
mod history;
mod input;
mod textarea;
mod word;
pub use cursor::CursorMove;
pub use input::{Input, Key};
pub use textarea::TextArea;