12 lines
243 B
Bash
12 lines
243 B
Bash
#!/usr/bin/env zsh
|
|
|
|
local x
|
|
builtin printf -v x "$@"
|
|
|
|
(( _z4h_can_save_restore_screen )) && x+=$'\ePtmux;'${x//$'\e'/$'\e\e'}$'\e\\'
|
|
|
|
if [[ -t 1 ]]; then
|
|
print -rn -- "$x"
|
|
elif [[ -v _z4h_tty_fd ]]; then
|
|
print -rnu $_z4h_tty_fd -- "$x"
|
|
fi
|