minicrossterm/examples
2019-04-04 18:46:43 +02:00
..
program_examples Removed items from workspace 2019-04-04 18:46:43 +02:00
alternate_screen.rs Introduced: Crossterm Workspace and feature flags. (#84) 2019-01-27 21:16:14 +01:00
crossterm.rs Introduced: Crossterm Workspace and feature flags. (#84) 2019-01-27 21:16:14 +01:00
cursor.rs Get the style example compiling again (#106) 2019-03-17 09:31:39 +01:00
input.rs Introduced: Crossterm Workspace and feature flags. (#84) 2019-01-27 21:16:14 +01:00
key_events.rs Adds support for mouse and keyboard events. 2019-04-02 21:38:34 +02:00
raw_mode.rs Introduced: Crossterm Workspace and feature flags. (#84) 2019-01-27 21:16:14 +01:00
README.md Adds support for mouse and keyboard events. 2019-04-02 21:38:34 +02:00
style.rs Update crossterm_style to 0.2 (#107) 2019-03-21 16:00:30 +01:00
terminal.rs Introduced: Crossterm Workspace and feature flags. (#84) 2019-01-27 21:16:14 +01:00

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

It has 4 modules:

  • color (this is about all the styling of the terminal)
  • cursor (this is about all the actions you can perform with the cursor)
  • terminal (this is about all the actions you can perform on the terminal)
  • input (this is about all input actions you can perform on with terminal)
  • key_events (this is about reading occurred 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)
  • program examples (this folder will contain some real life examples)