87f9be6723
It's unclear what the `send-text` alias does at first glance, so prefixing it with "repl-" both fixes that and helps make it discoverable via the command prompt's fuzzy matcher. The `repl` alias also seems too generic a name, the "-new" suffix should hopefully give a hint that it creates a new window.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
hook global ModuleLoaded x11 %{
|
|
require-module x11-repl
|
|
}
|
|
|
|
provide-module x11-repl %{
|
|
|
|
# termcmd should already be set in x11.kak
|
|
define-command -docstring %{
|
|
x11-repl [<arguments>]: create a new window for repl interaction
|
|
All optional parameters are forwarded to the new window
|
|
} \
|
|
-params .. \
|
|
-shell-completion \
|
|
x11-repl %{ evaluate-commands %sh{
|
|
if [ -z "${kak_opt_termcmd}" ]; then
|
|
echo 'fail termcmd option is not set'
|
|
exit
|
|
fi
|
|
if [ $# -eq 0 ]; then cmd="${SHELL:-sh}"; else cmd="$@"; fi
|
|
# The escape sequence in the printf command sets the terminal's title:
|
|
setsid ${kak_opt_termcmd} "printf '\e]2;kak_repl_window\a' \
|
|
&& ${cmd}" < /dev/null > /dev/null 2>&1 &
|
|
}}
|
|
|
|
define-command x11-send-text -docstring "send the selected text to the repl window" %{
|
|
evaluate-commands %sh{
|
|
printf %s\\n "${kak_selection}" | xsel -i ||
|
|
echo 'fail x11-send-text: failed to run xsel, see *debug* buffer for details' &&
|
|
xdotool search --name kak_repl_window key --clearmodifiers Shift+Insert ||
|
|
echo 'fail x11-send-text: failed to run xdotool, see *debug* buffer for details'
|
|
}
|
|
}
|
|
|
|
alias global repl-new x11-repl
|
|
alias global repl-send-text x11-send-text
|
|
|
|
}
|