ansi-cut 0.1.1

A library for cutting a string while preserving colors.
Documentation

ansi-cut Build Status codecov Crate docs.rs license

A library for cutting a string while preserving colors.

Cut

use ansi_cut::AnsiCut;
use owo_colors::{colors::*, OwoColorize};

pub fn main() {
    let colored_text = "When the night has come"
        .fg::<Black>()
        .bg::<White>()
        .to_string();
    let cutted_text = colored_text.cut(5..);

    println!("{}", cutted_text);
}

Chunks

use owo_colors::{colors::*, OwoColorize};

pub fn main() {
    let colored_text = "When the night has come"
        .fg::<Black>()
        .bg::<White>()
        .to_string();

    let chunks = ansi_cut::chunks(colored_text, 5);
}

Question

Are any other usefull ansi sequense that would be usefull to keep in mind?