fresh-editor 0.1.74

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
15
16
//! Core data model for documents
//!
//! This module contains pure data structures with minimal external dependencies.

pub mod buffer;
pub mod composite_buffer;
pub mod control_event;
pub mod cursor;
pub mod document_model;
pub mod edit;
pub mod event;
pub mod line_diff;
pub mod marker;
pub mod marker_tree;
pub mod piece_tree;
pub mod piece_tree_diff;