| Crates.io | rfp |
| lib.rs | rfp |
| version | 0.3.2 |
| created_at | 2025-08-02 06:08:42.820645+00 |
| updated_at | 2025-09-11 06:43:18.272305+00 |
| description | A Rust rewrite of [fpp](https://github.com/facebook/PathPicker) that lets you interactively select files from piped input and open them in your editor. |
| homepage | https://github.com/psyclaudeZ/rfp/ |
| repository | https://github.com/psyclaudeZ/rfp/ |
| max_upload_size | |
| id | 1778338 |
| size | 56,190 |
A Rust rewrite of fpp that lets you interactively select files from piped input and open them in your editor.
brew tap psyclaudeZ/rfp
brew install rfp
cargo install rfp
Pipe any command output to rfp and it will parse out file paths for interactive selection:
find . -name "*.rs" | rfp
git grep -i 'TODO' | rfp
git ls-files | rfp
Press ? for help on motions and functions.
This project began as a learning exercise to explore Rust and is heavily inspired by Facebook PathPicker, a tool I've been using since it was born.