9 releases

0.1.8 Jan 28, 2024
0.1.7 Jan 28, 2024
0.1.6 May 15, 2021
0.1.3 Apr 28, 2021

#908 in Command line utilities

MIT/Apache

11KB
139 lines

Build and Tests codecov crates.io docs.rs

term-snip

Description

A small utility crate using https://crates.io/crates/console to write to stdout but limited to a given number of lines. The oldest line is removed when writing a new line.

Usage

From examples/five.rs:

use term_snip::TermSnip;

use std::{thread, time};

/// A simple example writing 15 lines to stdout but only showing
/// a maximum of five lines. 
fn main() {
    let half_sec = time::Duration::from_millis(500);
    
    let mut term = TermSnip::new(5);
    for n in 1..15 {
        term.write_line(&format!("{} - line number {}", n, n)).unwrap();
        
        // just to slow down for demonstration 
        thread::sleep(half_sec);
    }
}
 

Screenshot

Screenshot showing above example in action

Screenshot of example five.rs

Clearing the written lines afterwards (cargo run --example clear)

Screenshot of example clear.rs

License

Licensed under either of

at your option.

Dependencies

~0.2–8.5MB
~49K SLoC