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 |
#15 in #shrs
253 downloads per month
375KB
8K
SLoC
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
~15–32MB
~445K SLoC