j-cli 12.8.57

A fast CLI tool for alias management, daily reports, and productivity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 自研 Markdown 编辑器核心模块
//!
//! 完全摆脱 tui-textarea 依赖,支持自动折行。

mod history;
mod renderer;
mod search;
pub mod text_buffer;
pub mod theme;
mod vim;
mod wrap_engine;

mod editor;
pub use editor::{
    ThemeGalleryItem, open_markdown_editor, open_markdown_editor_on_terminal,
    open_markdown_editor_with_content,
};
pub use theme::{EditorTheme, HighlightFn};