#repl #clap #interpreter

reedline-repl-rs

Library to generate a fancy REPL for your application based on reedline and clap

18 releases (10 stable)

1.1.1 Apr 1, 2024
1.1.0 Mar 2, 2024
1.0.7 Jul 31, 2023
1.0.4 Mar 28, 2023
0.3.2 Jun 8, 2022

#232 in Command-line interface

Download history 116/week @ 2023-12-22 78/week @ 2023-12-29 144/week @ 2024-01-05 140/week @ 2024-01-12 168/week @ 2024-01-19 138/week @ 2024-01-26 114/week @ 2024-02-02 104/week @ 2024-02-09 157/week @ 2024-02-16 218/week @ 2024-02-23 339/week @ 2024-03-01 105/week @ 2024-03-08 82/week @ 2024-03-15 21/week @ 2024-03-22 234/week @ 2024-03-29 163/week @ 2024-04-05

513 downloads per month
Used in 3 crates

MIT license

52KB
883 lines

reedline-repl-rs

Library to help you create a fancy REPL for your application based on nushell's reedline.

License: MIT Crates.io Documentation

Features:

  • Popular clap crate Command used as configuration interface
  • Also supports clap-derive based configuration with feature flag, see derive examples
  • General editing functionality, that should feel familiar coming from other shells (e.g. bash, fish, zsh).
  • Interactive tab-completion with graphical selection menu
  • Fish-style history autosuggestion hints
  • History with interactive search options (optionally persists to file, can support multiple sessions accessing the same file)
  • Configurable keybindings (default emacs-style bindings).
  • Configurable prompt with hooks to update after commands run
  • Command Syntax highlighting
  • Feature-flag for async support
  • Tip: Search history with CTRL+R, clear input with CTRL+C, exit repl with CTRL+D

Basic example code:

//! Minimal example
use reedline_repl_rs::clap::{Arg, ArgMatches, Command};
use reedline_repl_rs::{Repl, Result};

/// Write "Hello" with given name
fn hello<T>(args: ArgMatches, _context: &mut T) -> Result<Option<String>> {
    Ok(Some(format!(
        "Hello, {}",
        args.get_one::<String>("who").unwrap()
    )))
}

fn main() -> Result<()> {
    let mut repl = Repl::new(())
        .with_name("MyApp")
        .with_version("v0.1.0")
        .with_description("My very cool app")
        .with_banner("Welcome to MyApp")
        .with_command(
            Command::new("hello")
                .arg(Arg::new("who").required(true))
                .about("Greetings!"),
            hello,
        );
    repl.run()
}

Running the example above:

Colored Terminal Output

Welcome to MyApp
MyApp〉help
MyApp v0.1.0: My very cool app

COMMANDS:
    hello    Greetings!
    help     Print this message or the help of the given subcommand(s)

MyApp〉help hello
hello
Greetings!

USAGE:
    hello <who>

ARGS:
    <who>

OPTIONS:
    -h, --help    Print help information
MyApp〉hello Friend
Hello, Friend
MyApp〉

Testing

cargo test --features async

Will run the doc tests (compiling the examples). Notice, the examples/async.rs requires the async feature.

Thanks

Forked from repl-rs by Jacklund, changed to use reedline which is an advanced readline clone and the base of nushell.

Dependencies

~9–22MB
~293K SLoC