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 rfpcargo install rfpPipe 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 | rfpPress ? 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.