fresh-editor 0.1.56

A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Input pipeline
//!
//! This module handles the input-to-action-to-event translation.

pub mod actions;
pub mod buffer_mode;
pub mod command_registry;
pub mod commands;
pub mod fuzzy;
pub mod handler;
pub mod input_history;
pub mod keybindings;
pub mod multi_cursor;
pub mod position_history;