alma 0.1.1

A Bevy-native modal text editor with Vim-style navigation.
Documentation
//! Typed ECS message contracts between editor subsystems.

/// Editor command request messages.
pub mod command;

/// Cursor movement messages.
pub mod cursor;

/// Buffer-edit messages.
pub mod edit;

/// ECS owner-boundary rejection taxonomies.
pub mod error;

/// Raw editor input messages.
pub mod input;

/// Editor focus ownership messages.
pub mod focus;

/// Interpreted editor intent messages.
pub mod intent;

/// Shared owner-boundary operation diagnostics.
pub mod operation;

/// Plugin diagnostic messages.
pub mod plugin;

/// App lifecycle messages.
pub mod lifecycle;

/// Status-line messages.
pub mod status;