feat(tmux): tab cycling in fzf menu

This commit is contained in:
Matej Janezic 2023-07-03 14:58:43 +02:00
parent a4800db0f5
commit e266c8ab7c
Signed by: janezicmatej
SSH Key Fingerprint: SHA256:3vE2ixAKI8uRNhob5xDwoa9mMPUsxsM4QRHNcPuMHew
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
if [[ $# -eq 1 ]]; then if [[ $# -eq 1 ]]; then
selected=$1 selected=$1
else else
selected=$(find -L $GGROOT -mindepth 1 -maxdepth 5 -type d -name .git -prune | xargs -n 1 dirname | fzf) selected=$(find -L $GGROOT -mindepth 1 -maxdepth 5 -type d -name .git -prune | xargs -n 1 dirname | fzf --cycle --multi --bind 'tab:toggle-up,btab:toggle-down')
fi fi
if [[ -z $selected ]]; then if [[ -z $selected ]]; then