mnml-rs 0.2.14

A NvChad-style terminal IDE in Rust — vim or standard editing, LSP, git, and an embedded HTTP client.
//! Git integration: the lightweight status snapshot (branch / ahead-behind /
//! change counts) for the statusline + tree tint (`status`), per-file gutter
//! line-signs and the diff pane with hunk stage/unstage (`diff`), per-line blame
//! for the gutter blame mode (`blame`), and `git commit` from inside the IDE
//! (`commit`).

pub mod blame;
pub mod branch;
pub mod browse;
pub mod commit;
pub mod diff;
pub mod graph;
pub mod log;
pub mod rail;
pub mod reflog;
pub mod repos;
pub mod stage;
pub mod stash;
pub mod status;
pub mod sync;
pub mod tag;

pub use status::GitStatus;