mnml-rs 0.2.13

A NvChad-style terminal IDE in Rust — vim or standard editing, LSP, git, and an embedded HTTP client.
1
2
3
4
5
6
7
8
9
10
//! Per-context key handlers, extracted from `src/tui/mod.rs`
//! (T-3 / T-4 of the file-split refactor — 2026-06-28).
//!
//! Each `handle_*_key` function takes `&mut App` + `KeyEvent` and
//! dispatches the keystroke to the appropriate App method. The
//! handlers are stateless — all state lives on `App` — so moving them
//! between files is a pure mechanical relocation.

pub mod overlay;
pub mod pane;