summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc/windowing/repl/x11.kak4
1 files changed, 3 insertions, 1 deletions
diff --git a/rc/windowing/repl/x11.kak b/rc/windowing/repl/x11.kak
index 54966c2a..908645d5 100644
--- a/rc/windowing/repl/x11.kak
+++ b/rc/windowing/repl/x11.kak
@@ -15,7 +15,9 @@ All optional parameters are forwarded to the new window} \
exit
fi
if [ $# -eq 0 ]; then cmd="${SHELL:-sh}"; else cmd="$@"; fi
- setsid ${kak_opt_termcmd} ${cmd} -t kak_repl_window < /dev/null > /dev/null 2>&1 &
+ # 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" %{