minicrossterm/examples
2019-09-16 13:34:08 +02:00
..
program_examples 2018 edition (#222) 2019-09-16 13:34:08 +02:00
alternate_screen.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
command_bar.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
command.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
crossterm.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
cursor.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
input.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
key_events.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
raw_mode.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
README.md Examples cleanup (#196) 2019-09-05 16:14:33 +02:00
style.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00
terminal.rs 2018 edition (#222) 2019-09-16 13:34:08 +02:00

This folder contains examples for version 0.3.0 Here you will find examples of all the functionalities crossterm offers.

  • color: this is about the styling of the terminal
  • cursor: this is about the actions you can perform with the cursor
  • terminal: this is about the actions you can perform on the terminal
  • input: this is about input reading
  • key_events: this is about reading key events
  • crossterm: this is about the struct Crossterm
  • alternate_screen: this is about switching to an alternate screen buffer
  • raw_screen: this is about enabling raw screen
  • command: this is about to the command api
  • program examples: this folder will contain some real life examples
  • command_bar: this is a terminal application where multiple threads write to the output while you can enter commands asynchronously