anscape 0.2.2

Anscape provides a simple way to customize your terminal window with some styles and colors and manipulate with a cursor position using ANSI Escape Sequences.
Documentation
1
2
3
4
5
6
7
8
//! # Basic Sequences

/// # Escape sequence
/// Most of sequences start from this
pub const ESC: &str = "\x1b[";
/// # Reset sequence
/// Resets all styles and colors
pub const RESET: &str = "\x1b[0m";