Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 2.4 KB

Readme.md

File metadata and controls

58 lines (40 loc) · 2.4 KB

maulingmonkey-console-escape-codes

Unstable API for ANSI/VT100 escape codes.

Quickstart

# Cargo.toml
[dependencies]
maulingmonkey-console-escape-codes.git = "https://github.com/MaulingMonkey/console-escape-codes"
maulingmonkey-console-winapi-wrappers.git = "https://github.com/MaulingMonkey/console-winapi-wrappers"
// src\main.rs
use maulingmonkey_console_escape_codes::*;
use maulingmonkey_console_winapi_wrappers::*;

fn main() {
    #[cfg(windows)] let _ = change_console_mode(&mut std::io::stdout(), |m| m | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
    println!(
        "Hello, {green}{bold}world{reset}!",
        green = vt100::sgr_foreground_256(2),
        bold  = vt100::sgr_bold(true),
        reset = vt100::sgr_default(),
    );
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.