dracon-terminal-engine 0.1.10

A terminal application framework for Rust with composable widgets, z-indexed compositor, themes, and TextEditor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(missing_docs)]

//! Visual rendering components for the terminal engine.
//!
//! This module provides visual rendering utilities including icons, OSC sequences,
//! and synchronization primitives.

/// File-type icon rendering.
pub mod icons;
/// Operating System Command (OSC) sequences for clipboard, hyperlinks, and notifications.
pub mod osc;
/// Accessibility support (screen reader announcements via OSC 99).
pub mod accessibility;
/// Terminal sync mode (mode 2026) for tear-free rendering.
pub mod sync;