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
// Editor library - exposes all core modules for testing

#[cfg(feature = "plugins")]
pub mod v8_init;

// Core modules at root level
pub mod config;
pub mod session;
pub mod state;

// Organized modules
pub mod app;
pub mod input;
pub mod model;
pub mod primitives;
pub mod services;
pub mod view;