crossterm_cursor 0.3.0

A cross-platform library for moving the terminal cursor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(unused_imports)]

pub use crossterm_utils::{
    execute, queue, Command, ErrorKind, ExecutableCommand, Output, QueueableCommand, Result,
};

pub use self::cursor::{
    cursor, BlinkOff, BlinkOn, Down, Goto, Hide, Left, ResetPos, Right, SavePos, Show,
    TerminalCursor, Up,
};

mod cursor;
pub mod sys;