rust_fzf 0.3.1

A library to select an item using the fzf CLI tool
Documentation

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(),
);