hjkl_vim/cmd.rs
1/// Controller commands the host engine implements. hjkl-vim never mutates
2/// the editor directly — it emits a command and the host (apps/hjkl) calls
3/// the corresponding `Editor` method.
4#[derive(Debug, Clone, PartialEq, Eq)]
5pub enum EngineCmd {
6 ReplaceChar { ch: char, count: usize },
7 // Future variants land in chunks 2b–2e: FindChar, GotoMark, etc.
8}