fresh-editor 0.1.43

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
17
//! Low-level primitives and utilities
//!
//! This module contains syntax highlighting, ANSI handling,
//! and text manipulation utilities.

pub mod ansi;
pub mod ansi_background;
pub mod grammar_registry;
pub mod highlight_engine;
pub mod highlighter;
pub mod indent;
pub mod line_iterator;
pub mod line_wrapping;
pub mod semantic_highlight;
pub mod text_property;
pub mod textmate_highlighter;
pub mod word_navigation;