[go: up one dir, main page]

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
14
#[cfg(unix)]
pub use self::unix::get_cursor_position;
#[cfg(unix)]
pub use self::unix::show_cursor;
#[cfg(windows)]
pub use self::winapi::get_cursor_position;
#[cfg(windows)]
pub use self::winapi::show_cursor;

#[cfg(unix)]
pub mod unix;

#[cfg(windows)]
pub mod winapi;