Lines of Code Latest Version MIT docs Join us on Discord

Crossterm Terminal

This crate allows you to perform terminal related actions cross-platform e.g clearing, resizing etc. It supports all UNIX and windows terminals down to windows 7 (not all terminals are tested see Tested Terminals for more info)

This crate is a sub-crate of crossterm to perform terminal related actions, and can be use individually.

Other sub-crates are:

When you want to use other modules as well you might want to use crossterm with feature flags.

Table of contents:

Getting Started

All examples of how crossterm_terminal works can be found in the examples repository.

Add the crossterm_terminal package to your Cargo.toml file.

[dependencies] crossterm_terminal = "0.3"

And import the crossterm_terminal modules you want to use.

rust pub use crossterm_terminal::{terminal, Terminal, ClearType};

Useful Links

Features

These are the features of this crate:

Command API

My first recommendation is to use the command API because this might replace some of the existing API in the future. It is more convenient, faster, and easier to use.

Examples

The examples repository has more complete and verbose examples.

```rust use crossterm::terminal::{terminal,ClearType};

let mut terminal = terminal();

// Clear all lines in terminal; terminal.clear(ClearType::All)?; // Clear all cells from current cursor position down. terminal.clear(ClearType::FromCursorDown)?; // Clear all cells from current cursor position down. terminal.clear(ClearType::FromCursorUp)?; // Clear current line cells. terminal.clear(ClearType::CurrentLine)?; // Clear all the cells until next line. terminal.clear(ClearType::UntilNewLine)?;

// Get terminal size let (width, height) = terminal.size()?; print!("X: {}, y: {}", width, height);

// Scroll down, up 10 lines. terminal.scrolldown(10)?; terminal.scrollup(10)?;

// Set terminal size (width, height) terminal.set_size(10,10)?;

// exit the current process. terminal.exit();

// write to the terminal whether you are on the main screen or alternate screen. terminal.write("Some text\n Some text on new line"); ```

Tested terminals

This crate supports all Unix terminals and windows terminals down to Windows 7 but not all of them have been tested. If you have used this library for a terminal other than the above list without issues feel free to add it to the above list, I really would appreciate it.

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details