19 releases

0.4.5 Dec 30, 2024
0.4.4 Nov 27, 2024
0.4.3 Aug 5, 2024
0.4.2 Feb 2, 2024
0.2.1 Mar 31, 2022

#93 in Text processing

Download history 916/week @ 2024-09-28 3209/week @ 2024-10-05 6809/week @ 2024-10-12 7663/week @ 2024-10-19 6180/week @ 2024-10-26 5261/week @ 2024-11-02 6182/week @ 2024-11-09 1981/week @ 2024-11-16 2220/week @ 2024-11-23 1673/week @ 2024-11-30 2026/week @ 2024-12-07 1699/week @ 2024-12-14 644/week @ 2024-12-21 931/week @ 2024-12-28 1203/week @ 2025-01-04 1694/week @ 2025-01-11

4,774 downloads per month
Used in 7 crates

Unlicense

33KB
725 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

~5–15MB
~198K SLoC