Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 295 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 295 Bytes

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!["--layout=reverse".to_string()],
);