2016-01-26 14:04:48 +01:00
|
|
|
# http://tmux.github.io/
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
hook global ModuleLoad tmux %{
|
|
|
|
require-module tmux-repl
|
|
|
|
}
|
2019-01-18 14:42:04 +01:00
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
provide-module tmux-repl %{
|
2016-08-30 16:48:21 +02:00
|
|
|
|
2019-03-13 22:00:59 +01:00
|
|
|
declare-option -docstring "tmux pane id in which the REPL is running" str tmux_repl_id
|
2016-01-26 14:04:48 +01:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden -params 1..2 tmux-repl-impl %{
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2016-01-26 14:04:48 +01:00
|
|
|
if [ -z "$TMUX" ]; then
|
2017-07-19 17:18:52 +02:00
|
|
|
echo "echo -markup '{Error}This command is only available in a tmux session'"
|
2016-01-26 14:04:48 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
tmux_args="$1"
|
|
|
|
shift
|
|
|
|
tmux_cmd="$@"
|
|
|
|
tmux $tmux_args $tmux_cmd
|
2019-01-18 14:42:04 +01:00
|
|
|
printf "set-option global tmux_repl_id '%s'" $(tmux display-message -p '#{session_id}:#{window_id}.#{pane_id}')
|
2016-01-26 14:04:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command tmux-repl-vertical -params 0..1 -command-completion -docstring "Create a new vertical pane for repl interaction" %{
|
2016-01-26 14:04:48 +01:00
|
|
|
tmux-repl-impl 'split-window -v' %arg{@}
|
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command tmux-repl-horizontal -params 0..1 -command-completion -docstring "Create a new horizontal pane for repl interaction" %{
|
2016-01-26 14:04:48 +01:00
|
|
|
tmux-repl-impl 'split-window -h' %arg{@}
|
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command tmux-repl-window -params 0..1 -command-completion -docstring "Create a new window for repl interaction" %{
|
2016-01-26 14:04:48 +01:00
|
|
|
tmux-repl-impl 'new-window' %arg{@}
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:35:28 +02:00
|
|
|
define-command -hidden tmux-send-text -params 0..1 -docstring "tmux-send-text [text]: Send text(append new line) to the REPL pane.
|
|
|
|
If no text is passed, then the selection is used" %{
|
2016-01-28 20:30:49 +01:00
|
|
|
nop %sh{
|
2019-03-13 22:00:59 +01:00
|
|
|
if [ $# -eq 0 ]; then
|
2018-05-31 04:26:26 +02:00
|
|
|
tmux set-buffer -b kak_selection "${kak_selection}"
|
|
|
|
else
|
2018-05-31 15:37:50 +02:00
|
|
|
tmux set-buffer -b kak_selection "$1"
|
2018-05-31 04:26:26 +02:00
|
|
|
fi
|
2019-01-18 14:42:04 +01:00
|
|
|
tmux paste-buffer -b kak_selection -t "$kak_opt_tmux_repl_id"
|
2016-01-26 14:04:48 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-23 19:07:51 +02:00
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
define-command -hidden tmux-repl-disabled %{ evaluate-commands %sh{
|
2016-06-23 19:07:51 +02:00
|
|
|
VERSION_TMUX=$(tmux -V)
|
2017-07-19 17:18:52 +02:00
|
|
|
printf %s "echo -markup %{{Error}The version of tmux is too old: got ${VERSION_TMUX}, expected >= 2.x}"
|
2016-06-23 19:07:51 +02:00
|
|
|
} }
|
2019-03-13 22:00:59 +01:00
|
|
|
|
|
|
|
evaluate-commands %sh{
|
|
|
|
VERSION_TMUX=$(tmux -V | cut -d' ' -f2)
|
|
|
|
VERSION_TMUX=${VERSION_TMUX%%.*}
|
|
|
|
|
|
|
|
if [ "${VERSION_TMUX}" = "master" ] \
|
|
|
|
|| [ "${VERSION_TMUX}" -ge 2 ]; then
|
|
|
|
echo "
|
|
|
|
alias global repl tmux-repl-horizontal
|
|
|
|
alias global send-text tmux-send-text
|
|
|
|
"
|
|
|
|
else
|
|
|
|
echo "
|
|
|
|
alias global repl tmux-repl-disabled
|
|
|
|
alias global send-text tmux-repl-disabled
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|