Anscape provides a simple ways to customize your terminal window with styles and a cursor manipulations using ANSI Escape Sequences.

Features

Examples

Style and colors.

```rust use anscape::{ sequences::colors, sequences::colors::codes::, sequences::styles::set::, sprint, };

fn main() { sprint("Red text", &[&colors::basicfg(RED, false)[..], BOLD]); println!( "{}Alternative with println", anscape::build(&[&colors::basicfg(RED, false), BOLD]) ) } ```

Moving the cursor

```rust use anscape::sequences::cursor;

fn main() { println!("{}Move to line 1 col 1", cursor::move_to(100, 100)); }

```

Erase

```rust use anscape::sequences::erase;

fn main() { println!("{}Erase", anscape::build(&[FROMCURSORTOBEGININGOF_SCREEN])); }

```

License

MIT