by thomascountz on 1/31/25, 10:05 AM with 1 comments
echo '' | fzf --print-query --preview "cat *.json | jq {q}"
This sent me down a rabbit hole, and I discovered just how incredibly configurable fzf is.
For instance:
- `--bind=ctrl-y:execute-silent(jq {q} $tempfile | pbcopy)`: You can bind custom keys to execute non-default behaviors, like copying the current selection or `echo`-ing.
- `--query="."`: Start fzf with an initial query (e.g., `.` for jq queries) to streamline the experience.
- `--preview-window=top:90%:wrap`: You can configure fzf into different layouts, behaviors, and ANSI colors.
- `--header=$'ctrl+y : copy JSON\nctrl+f : copy filter\nenter : output\nesc : exit' \`: fzf supports multi-line header to provide instructions or context for the user right in the interface.
[1]: https://github.com/fiatjaf/awesome-jq?tab=readme-ov-file#com...
by swah on 1/31/25, 1:21 PM