19 lines
591 B
Text
19 lines
591 B
Text
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Script taken from
|
||
|
|
# https://gist.github.com/thugcee/41d1ba786fa5e66167ed6ee45e4f6346
|
||
|
|
|
||
|
|
# customizable
|
||
|
|
LIST_DATA="#{window_name} #{session_name} #{pane_current_command}"
|
||
|
|
FZF_COMMAND="fzf-tmux -p --delimiter=: --with-nth 4 --color=hl:2"
|
||
|
|
|
||
|
|
# do not change
|
||
|
|
TARGET_SPEC="#{session_name}:#{window_id}:#{pane_id}:"
|
||
|
|
|
||
|
|
# select pane
|
||
|
|
LINE=$(tmux list-panes -a -F "$TARGET_SPEC $LIST_DATA" | $FZF_COMMAND) || exit 0
|
||
|
|
# split the result
|
||
|
|
args=(${LINE//:/ })
|
||
|
|
# activate session/window/pane
|
||
|
|
tmux select-pane -t ${args[2]} && tmux select-window -t ${args[1]} && tmux switch-client -t ${args[0]}
|