Crossterm | cross-platform terminal manipulating library written in rust.

Latest Version | MIT licensed | docs.rs | Examples | Changelog | Release Nodes |----|----|----|----|----|----

Ever got disappointed when a terminal library for rust was only written for unix systems? Crossterm provides the same core functionalities for both windows and unix systems.

Crossterm aims to be simple and easy to call in code. Though the simplicity of Crossterm, you do not have to worry about the platform you are working with. You can just call whatever action you want and behind the scenes it will check what to do based on the current platform.

This crate supports all unix and windows terminals down to windows 7 (not all terminals are tested see Tested Terminals for more info)

Table of contents:

Getting Started

This documentation is only for Crossterm version 0.4.* if you have an older version of Crossterm I suggest you check the Upgrade Manual for more information about how to upgrade to a newer version. Also check out the examples folders which detailed examples for all functionality of this crate.

Add the Crossterm package to your Cargo.toml file.

``` [dependencies] crossterm = "0.4.0"

``` And import the Crossterm modules you want to use.

```rust
extern crate crossterm;

// this module is used for styling the terminal use self::crossterm::style::; // this module is used for cursor related actions use self::crossterm::cursor::; // this mudule is used for terminal related actions use self::crossterm::terminal::; // this mudule is used for input related actions use self::crossterm::input::;

```

Useful Links

Features

These are the features from this crate:

Examples

These are some basic examples demonstrating how to use this crate. See examples for more.

Crossterm Type | see more

This is a wrapper for all the modules crossterm provides like terminal, cursor, styling and input.

``rust // screen wheron theCrossterm` methods will be executed. let screen = Screen::default(); let crossterm = Crossterm::new(&screen);

// get instance of the modules, whereafter you can use the methods the particulary module provides. let color = crossterm.color(); let cursor = crossterm.cursor(); let terminal = crossterm.terminal();

// styling let style = crossterm.style("Black font on Green background color").with(Color::Black).on(Color::Green); style.paint(&screen);

```

Styled Font | see more

This module provides the functionalities to style the terminal cursor. ```rust
use crossterm::style::{Color, style}; use crossterm::Screen;

// store objcets so it could be painted later to the screen.
let style1 = style("Some Blue font on Black background").with(Color::Blue).on(Color::Black); let style2 = style("Some Red font on Yellow background").with(Color::Red).on(Color::Yellow);

let screen = Screen::default();

/// !! The following code only works for unix based systems !! // some attributes let normal = style("Normal text"); let bold = style("Bold text").bold(); let italic = style("Italic text").italic(); let slowblink = style("Slow blinking text").slowblink(); let rapidblink = style("Rapid blinking text").rapidblink(); let hidden = style("Hidden text").hidden(); let underlined = style("Underlined text").underlined(); let reversed = style("Reversed text").reverse(); let dimmed = style("Dim text").dim(); let crossedout = style("Crossed out font").crossedout();

// paint styled text to screen (this could also be called inline) style1.paint(&screen); style2.paint(&screen); bold.paint(&screen); hidden.paint(&screen);

// cursom rgb value style("RGB color (10,10,10) ").with(Color::Rgb { r: 10, g: 10, b: 10 }).paint(&screen);

// custom ansi color value style("ANSI color value (50) ").with(Color::AnsiValue(50)).paint(&screen);

```

Cursor | see more

This module provides the functionalities to work with the terminal cursor.

```rust

use crossterm::Screen; use crossterm::cursor;

// create Screen to wheron the cursor() should function. let screen = Screen::default(); let mut cursor = cursor(&screen);

/// Moving the cursor // Set the cursor to position X: 10, Y: 5 in the terminal cursor.goto(10,5);

// Move the cursor up,right,down,left 3 cells. cursor.moveup(3); cursor.moveright(3); cursor.movedown(3); cursor.moveleft(3);

/// Safe the current cursor position to recall later // Goto X: 5 Y: 5 cursor.goto(5,5); // Safe cursor position: X: 5 Y: 5 cursor.saveposition(); // Goto X: 5 Y: 20 cursor.goto(5,20); // Print at X: 5 Y: 20. print!("Yea!"); // Reset back to X: 5 Y: 5. cursor.resetposition(); // Print 'Back' at X: 5 Y: 5. print!("Back");

// hide cursor cursor.hide(); // show cursor cursor.show(); // blink or not blinking of the cursor (not widely supported) cursor.blink(true)

```

Input | see more

This module provides the functionalities to work with terminal input.

Check this for handling async input.

```rust

use crossterm::Screen; use crossterm::input;

// create Screen to wheron the cursor() should function. let screen = Screen::default(); let mut input = input(&screen);

match input.read_char() { Ok(s) => println!("char typed: {}", s), Err(e) => println!("char error : {}", e), }

match input.read_line() { Ok(s) => println!("string typed: {}", s), Err(e) => println!("error: {}", e), }

```

Terminal | see more

This module provides the functionalities to work with the terminal in general.

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

// create Screen to wheron the terminal() should function. let screen = Screen::default(); let mut terminal = terminal(&screen);

// 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.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"); ```

Check these links: AlternateScreen and RawScreen for information about how to work with these features.

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.

Notice

This library is not stable yet but I expect it to not to change that much anymore. And if there are any changes that affect previous versions I will describe what to change when upgrading Crossterm to a newer version.

Todo

I still have some things in mind to implement.

Contributing

I highly appreciate it when you are contributing to this crate. Also Since my native language is not English my grammar and sentence order will not be perfect. So improving this by correcting these mistakes will help both me and the reader of the docs.

Check Contributing for more info about branches and code architecture.

Authors

License

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