mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-17 18:45:10 +00:00
fb2959c514
fzf-tmux -w -q q fzf-tmux -w -- -q q
83 lines
1.7 KiB
Bash
Executable File
83 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# fzf-tmux: starts fzf in a tmux pane
|
|
# usage: fzf-tmux [-h [HEIGHT[%]]] [-w [WIDTH[%]]] [--] [FZF OPTIONS]
|
|
|
|
args=()
|
|
opt=""
|
|
skip=""
|
|
while [ $# -gt 0 ]; do
|
|
arg="$1"
|
|
case "$arg" in
|
|
-w*|-h*)
|
|
if [ -n "$skip" ]; then
|
|
args+=("$1")
|
|
shift
|
|
continue
|
|
fi
|
|
[[ "$arg" =~ ^-w ]] && opt="-h" || opt=""
|
|
if [ ${#arg} -gt 2 ]; then
|
|
size="${arg:2}"
|
|
else
|
|
shift
|
|
if [[ "$1" =~ ^[0-9]+%?$ ]]; then
|
|
size="$1"
|
|
else
|
|
[ -n "$1" -a "$1" != "--" ] && args+=("$1")
|
|
shift
|
|
continue
|
|
fi
|
|
fi
|
|
[[ "$size" =~ %$ ]] && opt="$opt -p ${size:0:((${#size}-1))}" ||
|
|
opt="$opt -l $size"
|
|
;;
|
|
--)
|
|
# "--" can be used to separate fzf-tmux options from fzf options to
|
|
# avoid conflicts
|
|
skip=1
|
|
;;
|
|
*)
|
|
args+=("$1")
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if [ -z "$TMUX_PANE" ]; then
|
|
fzf "${args[@]}"
|
|
exit $?
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Build arguments to fzf
|
|
[ ${#args[@]} -gt 0 ] && fzf_args=$(printf '\\"%s\\" ' "${args[@]}"; echo '')
|
|
|
|
# Clean up named pipes on exit
|
|
id=$RANDOM
|
|
fifo1=/tmp/fzf-fifo1-$id
|
|
fifo2=/tmp/fzf-fifo2-$id
|
|
fifo3=/tmp/fzf-fifo3-$id
|
|
cleanup() {
|
|
rm -f $fifo1 $fifo2 $fifo3
|
|
}
|
|
trap cleanup EXIT SIGINT SIGTERM
|
|
|
|
fail() {
|
|
>&2 echo "$1"
|
|
exit 1
|
|
}
|
|
fzf=$(which fzf 2> /dev/null) || fail "fzf executable not found"
|
|
|
|
mkfifo $fifo2
|
|
mkfifo $fifo3
|
|
if [ -t 0 ]; then
|
|
tmux split-window $opt 'sh -c "'$fzf' '"$fzf_args"' > '$fifo2'; echo \$? > '$fifo3'"'
|
|
else
|
|
mkfifo $fifo1
|
|
tmux split-window $opt 'sh -c "'$fzf' '"$fzf_args"' < '$fifo1' > '$fifo2'; echo \$? > '$fifo3'"'
|
|
cat <&0 > $fifo1 &
|
|
fi
|
|
cat $fifo2
|
|
[ "$(cat $fifo3)" = '0' ]
|
|
|