2022-09-13 23:08:00 -07:00

9 lines
132 B
Bash

#!/usr/bin/env bash
## FZF helpers
FZF_OPTS=(--read0 --select-1 --exit-0 --print0)
run_fzf() {
fzf "${FZF_OPTS[@]}" -- "$@"
}