From e266c8ab7c82bf3923d4e5e6422294fd7fd09d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Mon, 3 Jul 2023 14:58:43 +0200 Subject: [PATCH] feat(tmux): tab cycling in fzf menu --- tmux/tmux-sessionizer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/tmux-sessionizer b/tmux/tmux-sessionizer index b77f6c3..bfeb7c8 100755 --- a/tmux/tmux-sessionizer +++ b/tmux/tmux-sessionizer @@ -3,7 +3,7 @@ if [[ $# -eq 1 ]]; then selected=$1 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 if [[ -z $selected ]]; then