Skip to main content

oxicode_vtui/vim/
mod.rs

1//! Vim-style prompt editing engine for VT Code terminal surfaces.
2
3mod engine;
4mod text;
5mod types;
6
7pub use engine::{Editor, HandleKeyOutcome, handle_key};
8pub use text::{next_char_boundary, prev_char_boundary};
9pub use types::VimState;