You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Phuntsok Drak-pa 608c71402e Fix for AppVeyor config 4 years ago
src Added tests and documentation 4 years ago
.gitignore initial commit 4 years ago
Cargo.toml Added tests and documentation 4 years ago
LICENSE Add LICENSE 4 years ago
README.md Update README.md 4 years ago
appveyor.yml Fix for AppVeyor config 4 years ago

README.md

Output-VT100

This simple crates allows developers to enable ANSI escape characters in Windows' console, be it CMD or PowerShell. Its usage is very simple, as shown below:

extern crate output_vt100;

fn main() {
    output_vt100::init();
    println!("\x1b[31mThis text is red!\x1b[0m");
}

If you wish to ensure the output_vt100::init() function is only ran once, you can use the crate ctor. Be aware though it might not be suited for every use case, as explained on the crates presentation.

extern crate output_vt100;
extern crate ctor;
use ctor::*;

#[ctor]
fn init_term() {
    output_vt100::init();
}

fn main() {
    println!("\x1b[31mThis text is red!\x1b[0m");
}

Acknowledgements

A big thank you to nbouteme who helped me a lot during the development of this create.