1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-21 18:09:09 +03:00

Merge remote-tracking branch 'harryoooooooooo/tmux-focus'

This commit is contained in:
Maxime Coste 2021-01-03 11:35:47 +11:00
commit 083fcff9fa

View File

@ -55,7 +55,10 @@ If no client is passed then the current one is used' \
if [ $# -eq 1 ]; then
printf "evaluate-commands -client '%s' focus" "$1"
elif [ -n "${kak_client_env_TMUX}" ]; then
TMUX="${kak_client_env_TMUX}" tmux select-pane -t "${kak_client_env_TMUX_PANE}" > /dev/null
# select-pane makes the pane active in the window, but does not select the window. Both select-pane
# and select-window should be invoked in order to select a pane on a currently not focused window.
TMUX="${kak_client_env_TMUX}" tmux select-window -t "${kak_client_env_TMUX_PANE}" \; \
select-pane -t "${kak_client_env_TMUX_PANE}" > /dev/null
fi
}
}