[go: up one dir, main page]

crossterm 0.5.1

An crossplatform terminal library for manipulating terminals.
Documentation
1
2
3
4
5
/// This macro will take an ANSI input and combines it with some default ANSI characters and returns the result
#[macro_export]
macro_rules! csi {
    ($( $l:expr ),*) => { concat!("\x1B[", $( $l ),*) };
}