limit-cli 0.0.46

AI-powered terminal coding assistant with TUI. Multi-provider LLM support, session persistence, and built-in tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Input handling module for TUI
//!
//! This module provides keyboard, mouse, and clipboard input handling.

mod clipboard;
mod editor;
mod handler;
mod history;

pub use clipboard::ClipboardHandler;
pub use editor::InputEditor;
pub use handler::{InputAction, InputHandler};
pub use history::InputHistory;