2015-11-06 08:13:19 +01:00
|
|
|
# http://tmux.github.io/
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-03-13 19:15:59 +01:00
|
|
|
provide-module tmux %{
|
|
|
|
|
2020-07-05 04:02:59 +02:00
|
|
|
# ensure we're running under tmux
|
|
|
|
evaluate-commands %sh{
|
|
|
|
[ -z "${kak_opt_windowing_modules}" ] || [ -n "$TMUX" ] || echo 'fail tmux not detected'
|
|
|
|
}
|
|
|
|
|
2018-12-21 18:14:28 +01:00
|
|
|
define-command -hidden -params 2.. tmux-terminal-impl %{
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2016-05-05 14:32:16 +02:00
|
|
|
tmux=${kak_client_env_TMUX:-$TMUX}
|
|
|
|
if [ -z "$tmux" ]; then
|
2018-12-02 13:59:45 +01:00
|
|
|
echo "fail 'This command is only available in a tmux session'"
|
2015-11-17 23:25:33 +01:00
|
|
|
exit
|
2015-11-06 08:13:19 +01:00
|
|
|
fi
|
2015-11-17 23:25:33 +01:00
|
|
|
tmux_args="$1"
|
2020-07-26 21:07:42 +02:00
|
|
|
if [ "${1%%-*}" = split ]; then
|
|
|
|
tmux_args="$tmux_args -t ${kak_client_env_TMUX_PANE}"
|
2022-10-18 20:02:16 +02:00
|
|
|
elif [ "${1%% *}" = new-window ]; then
|
|
|
|
session_id=$(tmux display-message -p -t ${kak_client_env_TMUX_PANE} '#{session_id}')
|
|
|
|
tmux_args="$tmux_args -t $session_id"
|
2020-07-26 21:07:42 +02:00
|
|
|
fi
|
2018-12-21 18:14:28 +01:00
|
|
|
shift
|
|
|
|
# ideally we should escape single ';' to stop tmux from interpreting it as a new command
|
|
|
|
# but that's probably too rare to care
|
2021-04-24 18:59:13 +02:00
|
|
|
if [ -n "$TMPDIR" ]; then
|
|
|
|
TMUX=$tmux tmux $tmux_args env TMPDIR="$TMPDIR" "$@" < /dev/null > /dev/null 2>&1 &
|
|
|
|
else
|
|
|
|
TMUX=$tmux tmux $tmux_args "$@" < /dev/null > /dev/null 2>&1 &
|
|
|
|
fi
|
2015-11-06 08:13:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command tmux-terminal-vertical -params 1.. -docstring '
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-vertical <program> [<arguments>]: create a new terminal as a tmux pane
|
2018-12-02 13:59:45 +01:00
|
|
|
The current pane is split into two, top and bottom
|
2018-12-21 18:14:28 +01:00
|
|
|
The program passed as argument will be executed in the new terminal' \
|
2018-12-02 13:59:45 +01:00
|
|
|
%{
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-impl 'split-window -v' %arg{@}
|
2015-11-06 08:13:19 +01:00
|
|
|
}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command tmux-terminal-vertical shell
|
|
|
|
|
|
|
|
define-command tmux-terminal-horizontal -params 1.. -docstring '
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-horizontal <program> [<arguments>]: create a new terminal as a tmux pane
|
2018-12-02 13:59:45 +01:00
|
|
|
The current pane is split into two, left and right
|
2018-12-21 18:14:28 +01:00
|
|
|
The program passed as argument will be executed in the new terminal' \
|
2018-12-02 13:59:45 +01:00
|
|
|
%{
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-impl 'split-window -h' %arg{@}
|
2018-12-02 13:59:45 +01:00
|
|
|
}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command tmux-terminal-horizontal shell
|
|
|
|
|
|
|
|
define-command tmux-terminal-window -params 1.. -docstring '
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-window <program> [<arguments>] [<arguments>]: create a new terminal as a tmux window
|
|
|
|
The program passed as argument will be executed in the new terminal' \
|
2018-12-02 13:59:45 +01:00
|
|
|
%{
|
2018-12-21 18:14:28 +01:00
|
|
|
tmux-terminal-impl 'new-window' %arg{@}
|
2015-11-17 23:25:33 +01:00
|
|
|
}
|
2022-02-22 10:14:47 +01:00
|
|
|
complete-command tmux-terminal-window shell
|
2015-11-17 23:25:33 +01:00
|
|
|
|
2022-02-22 10:14:47 +01:00
|
|
|
define-command tmux-focus -params ..1 -docstring '
|
2018-12-02 13:59:45 +01:00
|
|
|
tmux-focus [<client>]: focus the given client
|
|
|
|
If no client is passed then the current one is used' \
|
|
|
|
%{
|
|
|
|
evaluate-commands %sh{
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
printf "evaluate-commands -client '%s' focus" "$1"
|
|
|
|
elif [ -n "${kak_client_env_TMUX}" ]; then
|
2020-12-28 16:04:00 +01:00
|
|
|
# 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
|
2018-12-02 13:59:45 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
2022-07-19 15:56:05 +02:00
|
|
|
complete-command -menu tmux-focus client
|
2019-03-13 19:15:59 +01:00
|
|
|
|
|
|
|
## The default behaviour for the `new` command is to open an horizontal pane in a tmux session
|
|
|
|
alias global focus tmux-focus
|
|
|
|
alias global terminal tmux-terminal-horizontal
|
|
|
|
|
|
|
|
}
|