rustyline-async 0.2.3

A minimal readline with multiline and async support.
Documentation
rustyline-async-0.2.3 has been yanked.

RustyLine Async

Docs

A minimal readline with multiline and async support.

Inspired by rustyline , async-readline & termion-async-input. Built using crossterm

Features

  • Full Unicode Support (Including Graphene Clusters)
  • Multiline Editing
  • Ctrl-C, Ctrl-D are returned as Err(Interrupt) and Err(Eof) respectively.
  • Ctrl-U to clear line before cursor
  • Ctrl-left & right to move to next or previous whitespace
  • Home/Ctrl-A and End/Ctrl-E to jump to the start and end of the input
  • Ctrl-L clear screen
  • Extensible design based on crossterm's event-stream feature

Feel free to PR to add more features!

Example:

cargo run --package readline

rustyline-async