fresh-editor 0.1.90

A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins
Documentation
//! View and UI layer
//!
//! This module contains all presentation and rendering components.
//!
//! # WASM Compatibility
//!
//! Many view modules are WASM-compatible since they use ratatui (pure rendering)
//! and crossterm types (pure data structures). Modules that depend on runtime-only
//! code (app, state, config_io, input, tree-sitter) are gated behind runtime feature.

// Theme module is always available (pure types + embedded JSON)
pub mod theme;

// WASM-compatible modules (pure rendering, no runtime deps)
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod color_support;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod composite_view;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod controls;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod dimming;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod margin;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod overlay;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod scroll_sync;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod ui;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod viewport;
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod virtual_text;

// Settings module has internal gating (schema is WASM-compatible)
#[cfg(any(feature = "runtime", feature = "wasm"))]
pub mod settings;

// Runtime-only modules (depend on app, state, config_io, input, or tree-sitter)
#[cfg(feature = "runtime")]
pub mod calibration_wizard;
#[cfg(feature = "runtime")]
pub mod file_browser_input;
#[cfg(feature = "runtime")]
pub mod file_tree;
#[cfg(feature = "runtime")]
pub mod markdown;
#[cfg(feature = "runtime")]
pub mod popup;
#[cfg(feature = "runtime")]
pub mod popup_input;
#[cfg(feature = "runtime")]
pub mod popup_mouse;
#[cfg(feature = "runtime")]
pub mod prompt;
#[cfg(feature = "runtime")]
pub mod prompt_input;
#[cfg(feature = "runtime")]
pub mod query_replace_input;
#[cfg(feature = "runtime")]
pub mod reference_highlight_overlay;
#[cfg(feature = "runtime")]
pub mod split;
#[cfg(feature = "runtime")]
pub mod stream;