crossterm_cursor 0.4.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(crate) use self::unix::get_cursor_position;
#[cfg(unix)]
pub(crate) use self::unix::show_cursor;
#[cfg(windows)]
pub(crate) use self::windows::get_cursor_position;
#[cfg(windows)]
pub(crate) use self::windows::show_cursor;

#[cfg(windows)]
pub(crate) mod windows;

#[cfg(unix)]
pub(crate) mod unix;