Skip to main content

limit_cli/tui/input/
mod.rs

1//! Input handling module for TUI
2//!
3//! This module provides keyboard, mouse, and clipboard input handling.
4
5mod clipboard;
6mod editor;
7mod handler;
8mod history;
9
10pub use clipboard::ClipboardHandler;
11pub use editor::InputEditor;
12pub use handler::{InputAction, InputHandler};
13pub use history::InputHistory;