2018-07-02 06:40:07 +10:00
|
|
|
/// Examples of actions that could be performed on the alternatescreen.
|
|
|
|
/// !! Note that alternate screen only works on Unix and windows 10 systems. I am working on windows 7 support. !!
|
2018-06-14 05:02:09 +10:00
|
|
|
pub mod alternate_screen;
|
2018-07-02 06:40:07 +10:00
|
|
|
|
|
|
|
/// Examples of actions that could be performed on the terminal.
|
|
|
|
pub mod terminal;
|
|
|
|
|
|
|
|
/// Alternate screen is only supported for unix systems. Windows support will come later :).
|
2018-07-13 03:48:13 +10:00
|
|
|
#[cfg(target_os = "unix")]
|
2018-06-14 05:02:09 +10:00
|
|
|
pub mod raw_mode;
|