strop_engine/lib.rs
1//! strop editor engine: documents, grammar dispatch, services, sessions — no
2//! terminal. The binary (`crates/strop`) owns the physical terminal, cell-grid
3//! rendering, the CLI, self-update, bench and headless frame rendering; it
4//! drives this engine and injects frame capture at the composition roots.
5pub mod config;
6pub mod editor;
7pub mod files;
8pub mod keymap;
9pub mod session;