vtcode-ui 0.135.11

Unified UI crate for VT Code: design system, theme registry, and TUI framework
1
2
3
4
5
6
7
8
9
//! Vim-style prompt editing engine for VT Code terminal surfaces.

mod engine;
mod text;
mod types;

pub use engine::{Editor, HandleKeyOutcome, handle_key};
pub use text::{next_char_boundary, prev_char_boundary};
pub(crate) use types::VimState;