This commit is contained in:
Maxime Coste 2021-01-04 09:44:58 +11:00
commit 183bb660b7

View File

@ -36,14 +36,14 @@ define-command tmux-repl-window -params 0.. -command-completion -docstring "Crea
} }
define-command -hidden tmux-send-text -params 0..1 -docstring %{ define-command -hidden tmux-send-text -params 0..1 -docstring %{
tmux-send-text [text]: Send text(append new line) to the REPL pane. tmux-send-text [text]: Send text to the REPL pane.
If no text is passed, then the selection is used If no text is passed, then the selection is used
} %{ } %{
nop %sh{ nop %sh{
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then
tmux set-buffer -b kak_selection "${kak_selection}" tmux set-buffer -b kak_selection -- "${kak_selection}"
else else
tmux set-buffer -b kak_selection "$1" tmux set-buffer -b kak_selection -- "$1"
fi fi
tmux paste-buffer -b kak_selection -t "$kak_opt_tmux_repl_id" tmux paste-buffer -b kak_selection -t "$kak_opt_tmux_repl_id"
} }