file-scripts/lib/fzf.sh

8 lines
111 B
Bash
Raw Normal View History

2022-09-28 21:26:39 -07:00
## FZF helpers
FZF_OPTS=('--select-1' '--exit-0')
run_fzf() {
2022-09-30 21:36:24 -07:00
fzf "${FZF_OPTS[@]}" -- <<<"$@" || return 2
2022-09-28 21:26:39 -07:00
}