fresh/input/mod.rs
1//! Input pipeline
2//!
3//! This module handles the input-to-action-to-event translation.
4
5pub mod actions;
6pub mod buffer_mode;
7pub mod command_registry;
8pub mod commands;
9pub mod composite_router;
10pub mod fuzzy;
11pub mod handler;
12pub mod input_history;
13pub mod key_translator;
14pub mod keybindings;
15mod line_move;
16pub mod multi_cursor;
17pub mod position_history;
18pub mod quick_open;
19
20#[cfg(test)]
21pub mod tests_language_features;