16 releases

0.4.2 Feb 2, 2024
0.4.1 Dec 13, 2023
0.4.0 Sep 7, 2023
0.3.2 May 27, 2023
0.2.1 Mar 31, 2022

#124 in Text processing

Download history 1863/week @ 2024-01-22 1998/week @ 2024-01-29 1882/week @ 2024-02-05 1229/week @ 2024-02-12 1356/week @ 2024-02-19 1392/week @ 2024-02-26 1506/week @ 2024-03-04 1044/week @ 2024-03-11 1041/week @ 2024-03-18 1113/week @ 2024-03-25 905/week @ 2024-04-01 1012/week @ 2024-04-08 999/week @ 2024-04-15 882/week @ 2024-04-22 854/week @ 2024-04-29 905/week @ 2024-05-06

3,657 downloads per month
Used in 5 crates

Unlicense

28KB
621 lines

RustyLine Async

Docs

A minimal readline with multiline and async support.

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

Features

  • Works on all platforms supported by crossterm.
  • Full Unicode Support (Including Grapheme Clusters)
  • Multiline Editing
  • In-memory History
  • Ctrl-C, Ctrl-D are returned as Ok(Interrupt) and Ok(Eof) ReadlineEvents.
  • 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-A & Ctrl-E can be toggled off by disabling the "emacs" feature)
  • Ctrl-L clear screen
  • Ctrl-W delete until previous space
  • Extensible design based on crossterm's event-stream feature

Feel free to PR to add more features!

Example:

cargo run --example readline

rustyline-async

License

This software is licensed under The Unlicense license.

Dependencies

~2.9–8.5MB
~71K SLoC