4 releases

0.0.4 Feb 2, 2024
0.0.3 Jan 2, 2024
0.0.2 Nov 12, 2023
0.0.1 Jun 3, 2023

#17 in #shrs

MIT/Apache

365KB
8K SLoC

shrs_line

modular and customizable readline implementation in rust

MIT/Apache 2.0


lib.rs:

Readline implementation for shrs

Readline is the part of the shell that is responsible for taking in user input. It handles a variety of things like keeping track of history, syntax highlighting, tab completion, vi mode, and many more.

shrs_line has a similar design philosophy to the rest of shrs in that it is also highly configurable and extensible. Simply construct your own readline and give it to shrs to use.

Example

use shrs_line::prelude::*;

let mut myline = LineBuilder::default();

Imports the commonly used structs and types

Dependencies

~16–32MB
~464K SLoC