tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
// src/editor/mod.rs
//! Editor submodule exports.
//!
//! This module exposes the internal editor pieces (core, editing, movement,
//! navigation, mode, and optional features like suggestions, validation, and
//! computed field helpers). Only module declarations and re-exports live here.

#[cfg(feature = "keybindings")]
pub(crate) mod behavior;
pub mod core;
pub mod display;
pub mod editing;
pub mod features;
pub mod mode;
pub mod movement;
pub mod navigation;
pub(crate) mod paradigm;
#[cfg(feature = "keybindings")]
pub(crate) mod product;
#[cfg(feature = "keybindings")]
pub(crate) mod rows;
#[cfg(feature = "keybindings")]
pub(crate) mod selection;

pub use core::EditorCore;