fresh-editor 0.4.0

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
//! Keybinding Editor
//!
//! A modal dialog for browsing, searching, and editing keybindings.
//! Provides a table view of all resolved bindings with search, filter,
//! key recording, conflict detection, and keymap management.

mod editor;
mod helpers;
mod types;

pub use editor::KeybindingEditor;
pub use types::*;