Skip to main content

oxicode_vtui/vim/
mod.rs

1//! Vim-style prompt editing engine.
2//!
3//! **DEPRECATED**: vim mode moved to `oxicode-cli` (host-owned). The
4//! `oxicode-textarea` crate owns editable text; vim decision logic now
5//! lives with the CLI app that drives it.
6
7#![deprecated(
8    since = "0.75.0",
9    note = "vim mode relocated to oxicode-cli; oxicode-textarea owns text, CLI owns vim logic"
10)]
11
12mod engine;
13mod text;
14mod types;
15
16pub use engine::{Editor, HandleKeyOutcome, handle_key};
17pub use text::{next_char_boundary, prev_char_boundary};
18pub use types::VimState;