minicrossterm/examples
Timon 762c3a9b8e
Input cleanup (#182)
- Removed input parsing WinAPI
2019-07-25 15:57:05 +02:00
..
program_examples Command API experiment (#175) 2019-07-24 20:10:27 +02:00
alternate_screen.rs cargo fmt (#132) 2019-04-28 22:20:43 +02:00
command.rs Command API experiment (#175) 2019-07-24 20:10:27 +02:00
crossterm.rs Documentation fixes (#156) 2019-06-21 18:10:46 +02:00
cursor.rs Documentation fixes (#156) 2019-06-21 18:10:46 +02:00
input.rs Refactor and API stabilization (#115) 2019-04-10 23:46:30 +02:00
key_events.rs Input cleanup (#182) 2019-07-25 15:57:05 +02:00
raw_mode.rs Examples Clean-Up (#119) 2019-04-13 14:44:31 +02:00
README.md Command API experiment (#175) 2019-07-24 20:10:27 +02:00
style.rs Input cleanup (#182) 2019-07-25 15:57:05 +02:00
terminal.rs Added resetting color support 2019-05-04 12:29:30 +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