rust_fzf

Crates.iorust_fzf
lib.rsrust_fzf
version0.3.1
sourcesrc
created_at2023-02-05 00:47:09.89755
updated_at2024-03-10 20:35:07.812154
descriptionA library to select an item using the fzf CLI tool
homepage
repository
max_upload_size
id776749
size4,442
Andrew Willette (andrewwillette)

documentation

README

rust_fzf

Rust library to allow for selecting an item using the fzf CLI tool.

Install

cargo add rust_fzf

Usage

let selected: Result<Vec<String>, String> = select(
    vec!["hello".to_string(), "rust_fzf!".to_string()],
    Vec::new(),
);
Commit count: 0

cargo fmt