From 94c27bc64a9b82f2bcae6c07aaea5dd64cc32e88 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Wed, 8 Feb 2017 09:34:18 +0300 Subject: Implement support scripts for `tmux` and `dvtm` This script adds two scripts that allows spawning a new window/pane in `tmux` and `dvtm` in which `fzy` will be called. Options data on the standard input are passed seamlessly, e.g. $ find -type f | fzy-tmux $ ag -g '' | fzy-dvtm -l $(tput lines) --- contrib/fzy-dvtm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ contrib/fzy-tmux | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100755 contrib/fzy-dvtm create mode 100755 contrib/fzy-tmux diff --git a/contrib/fzy-dvtm b/contrib/fzy-dvtm new file mode 100755 index 0000000..52f21d7 --- /dev/null +++ b/contrib/fzy-dvtm @@ -0,0 +1,50 @@ +#!/bin/sh + +_echo() { + printf %s\\n "$*" +} + +fatal() { + _echo "$*" >&2 + exit 1 +} + +main() { + if [ -z "${DVTM_CMD_FIFO}" ]; then + fatal "No DVTM_CMD_FIFO variable detected in the environment" + fi + + readonly PATH_DIR_TMP=$(mktemp -d) + readonly PATH_FIFO_IN="${PATH_DIR_TMP}/in" + readonly PATH_FIFO_OUT="${PATH_DIR_TMP}/out" + readonly PATH_FIFO_RET="${PATH_DIR_TMP}/ret" + + if [ -z "${PATH_DIR_TMP}" ]; then + fatal "Unable to create a temporary directory" + fi + + args="" + for i in "$@"; do + if [ -z "${args}" ]; then + args="\\'${i}\\'" + else + args="${args} \\'${i}\\'" + fi + done + + mkfifo "${PATH_FIFO_IN}" "${PATH_FIFO_OUT}" + + _echo \ + "create 'fzy ${args} < \\'${PATH_FIFO_IN}\\' > \\'${PATH_FIFO_OUT}\\' 2>&1; echo $? > \\'${PATH_FIFO_RET}\\''" \ + > "${DVTM_CMD_FIFO}" + cat <&0 > "${PATH_FIFO_IN}" & + cat < "${PATH_FIFO_OUT}" + + readonly CODE_RET=$(head -n 1 "${PATH_FIFO_RET}") + + rm -rf "${PATH_DIR_TMP}" + + exit "${CODE_RET}" +} + +main "$@" diff --git a/contrib/fzy-tmux b/contrib/fzy-tmux new file mode 100755 index 0000000..ba7c146 --- /dev/null +++ b/contrib/fzy-tmux @@ -0,0 +1,44 @@ +#!/bin/sh + +_echo() { + printf %s\\n "$*" +} + +fatal() { + _echo "$*" >&2 + exit 1 +} + +main() { + if [ -z "${TMUX}" ]; then + fatal "No TMUX variable detected in the environment" + fi + + readonly PATH_DIR_TMP=$(mktemp -d) + readonly PATH_FIFO_IN="${PATH_DIR_TMP}/in" + readonly PATH_FIFO_OUT="${PATH_DIR_TMP}/out" + readonly PATH_FIFO_RET="${PATH_DIR_TMP}/ret" + + if [ -z "${PATH_DIR_TMP}" ]; then + fatal "Unable to create a temporary directory" + fi + + mkfifo "${PATH_FIFO_IN}" "${PATH_FIFO_OUT}" + + export TMUX=$(_echo "${TMUX}" | cut -d , -f 1,2) + eval "tmux \ + set-window-option synchronize-panes off \\; \ + set-window-option remain-on-exit off \\; \ + split-window \"fzy $* < '${PATH_FIFO_IN}' > '${PATH_FIFO_OUT}' 2>&1; echo $? > '${PATH_FIFO_RET}'\"" + + cat <&0 > "${PATH_FIFO_IN}" & + cat < "${PATH_FIFO_OUT}" + + readonly CODE_RET=$(head -n 1 "${PATH_FIFO_RET}") + + rm -rf "${PATH_DIR_TMP}" + + exit "${CODE_RET}" +} + +main "$@" -- cgit v1.2.3