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
//! View and UI layer
//!
//! This module contains all presentation and rendering components.

pub mod file_tree;
pub mod margin;
pub mod overlay;
pub mod popup;
pub mod prompt;
pub mod split;
pub mod stream;
pub mod theme;
pub mod ui;
pub mod viewport;
pub mod virtual_text;