fresh-editor 0.1.56

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
//! Built-in help manual support
//!
//! This module provides the embedded help manual that is bundled into the binary
//! at compile time using `include_str!()`.

/// The embedded help manual content (bundled at compile time)
pub const HELP_MANUAL_CONTENT: &str = include_str!("../../docs/fresh.txt");

/// The name of the help manual buffer
pub const HELP_MANUAL_BUFFER_NAME: &str = "*Fresh Manual*";

/// The name of the keyboard shortcuts buffer
pub const KEYBOARD_SHORTCUTS_BUFFER_NAME: &str = "*Keyboard Shortcuts*";