2014-12-20 07:24:26 +00:00
|
|
|
# Set terminal window and tab/icon title
|
|
|
|
#
|
|
|
|
# usage: title short_tab_title [long_window_title]
|
|
|
|
#
|
|
|
|
# See: http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#ss3.1
|
|
|
|
# Fully supports screen, iterm, and probably most modern xterm and rxvt
|
|
|
|
# (In screen, only short_tab_title is used)
|
|
|
|
# Limited support for Apple Terminal (Terminal can't set window and tab separately)
|
2011-01-30 07:21:49 +00:00
|
|
|
function title {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-08-01 02:23:12 +00:00
|
|
|
setopt prompt_subst
|
2014-04-23 00:35:47 +00:00
|
|
|
|
2015-02-10 18:43:25 +00:00
|
|
|
[[ "$EMACS" == *term* ]] && return
|
|
|
|
|
|
|
|
# if $2 is unset use $1 as default
|
|
|
|
# if it is set and empty, leave it as is
|
|
|
|
: ${2=$1}
|
|
|
|
|
2015-12-01 13:04:12 +00:00
|
|
|
case "$TERM" in
|
2020-09-29 16:34:35 +00:00
|
|
|
cygwin|xterm*|putty*|rxvt*|konsole*|ansi|mlterm*|alacritty|st*)
|
2020-09-27 12:15:50 +00:00
|
|
|
print -Pn "\e]2;${2:q}\a" # set window name
|
|
|
|
print -Pn "\e]1;${1:q}\a" # set tab name
|
2015-12-01 13:04:12 +00:00
|
|
|
;;
|
2019-03-21 19:41:55 +00:00
|
|
|
screen*|tmux*)
|
2020-09-27 12:15:50 +00:00
|
|
|
print -Pn "\ek${1:q}\e\\" # set screen hardstatus
|
2015-12-01 13:04:12 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
2020-09-27 12:15:50 +00:00
|
|
|
print -Pn "\e]2;${2:q}\a" # set window name
|
|
|
|
print -Pn "\e]1;${1:q}\a" # set tab name
|
2015-11-19 17:03:56 +00:00
|
|
|
else
|
|
|
|
# Try to use terminfo to set the title
|
|
|
|
# If the feature is available set title
|
|
|
|
if [[ -n "$terminfo[fsl]" ]] && [[ -n "$terminfo[tsl]" ]]; then
|
2020-03-03 19:17:01 +00:00
|
|
|
echoti tsl
|
|
|
|
print -Pn "$1"
|
|
|
|
echoti fsl
|
|
|
|
fi
|
2015-12-01 13:04:12 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
|
2020-10-08 17:20:47 +00:00
|
|
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m:%~"
|
2015-08-09 19:15:12 +00:00
|
|
|
# Avoid duplication of directory in terminals with independent dir display
|
2015-12-01 13:05:18 +00:00
|
|
|
if [[ "$TERM_PROGRAM" == Apple_Terminal ]]; then
|
2015-08-09 19:15:12 +00:00
|
|
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m"
|
|
|
|
fi
|
2011-01-30 07:21:49 +00:00
|
|
|
|
2015-02-04 06:00:51 +00:00
|
|
|
# Runs before showing the prompt
|
2011-11-15 06:14:03 +00:00
|
|
|
function omz_termsupport_precmd {
|
2020-06-30 16:54:27 +00:00
|
|
|
[[ "${DISABLE_AUTO_TITLE:-}" == true ]] && return
|
2011-04-04 12:02:50 +00:00
|
|
|
title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-04 06:00:51 +00:00
|
|
|
# Runs before executing the command
|
2011-11-15 06:14:03 +00:00
|
|
|
function omz_termsupport_preexec {
|
2020-06-30 16:54:27 +00:00
|
|
|
[[ "${DISABLE_AUTO_TITLE:-}" == true ]] && return
|
2020-03-03 19:17:01 +00:00
|
|
|
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-12-01 13:05:18 +00:00
|
|
|
setopt extended_glob
|
|
|
|
|
2020-03-03 19:10:43 +00:00
|
|
|
# split command into array of arguments
|
|
|
|
local -a cmdargs
|
|
|
|
cmdargs=("${(z)2}")
|
|
|
|
# if running fg, extract the command from the job description
|
|
|
|
if [[ "${cmdargs[1]}" = fg ]]; then
|
|
|
|
# get the job id from the first argument passed to the fg command
|
|
|
|
local job_id jobspec="${cmdargs[2]#%}"
|
|
|
|
# logic based on jobs arguments:
|
|
|
|
# http://zsh.sourceforge.net/Doc/Release/Jobs-_0026-Signals.html#Jobs
|
|
|
|
# https://www.zsh.org/mla/users/2007/msg00704.html
|
|
|
|
case "$jobspec" in
|
|
|
|
<->) # %number argument:
|
|
|
|
# use the same <number> passed as an argument
|
|
|
|
job_id=${jobspec} ;;
|
|
|
|
""|%|+) # empty, %% or %+ argument:
|
|
|
|
# use the current job, which appears with a + in $jobstates:
|
|
|
|
# suspended:+:5071=suspended (tty output)
|
|
|
|
job_id=${(k)jobstates[(r)*:+:*]} ;;
|
|
|
|
-) # %- argument:
|
|
|
|
# use the previous job, which appears with a - in $jobstates:
|
|
|
|
# suspended:-:6493=suspended (signal)
|
|
|
|
job_id=${(k)jobstates[(r)*:-:*]} ;;
|
|
|
|
[?]*) # %?string argument:
|
|
|
|
# use $jobtexts to match for a job whose command *contains* <string>
|
|
|
|
job_id=${(k)jobtexts[(r)*${(Q)jobspec}*]} ;;
|
|
|
|
*) # %string argument:
|
|
|
|
# use $jobtexts to match for a job whose command *starts with* <string>
|
|
|
|
job_id=${(k)jobtexts[(r)${(Q)jobspec}*]} ;;
|
|
|
|
esac
|
2014-03-25 20:01:34 +00:00
|
|
|
|
2020-03-03 19:10:43 +00:00
|
|
|
# override preexec function arguments with job command
|
2020-03-03 19:17:01 +00:00
|
|
|
if [[ -n "${jobtexts[$job_id]}" ]]; then
|
|
|
|
1="${jobtexts[$job_id]}"
|
|
|
|
2="${jobtexts[$job_id]}"
|
2019-07-06 16:10:30 +00:00
|
|
|
fi
|
2014-12-20 07:24:26 +00:00
|
|
|
fi
|
|
|
|
|
2014-03-25 20:01:34 +00:00
|
|
|
# cmd name only, or if this is sudo or ssh, the next cmd
|
2013-09-24 09:11:35 +00:00
|
|
|
local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%}
|
2013-12-14 03:30:29 +00:00
|
|
|
local LINE="${2:gs/%/%%}"
|
2014-03-25 20:01:34 +00:00
|
|
|
|
2013-12-16 08:24:24 +00:00
|
|
|
title '$CMD' '%100>...>$LINE%<<'
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
2011-11-15 06:14:03 +00:00
|
|
|
|
2019-11-19 17:47:12 +00:00
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook precmd omz_termsupport_precmd
|
|
|
|
add-zsh-hook preexec omz_termsupport_preexec
|
2015-02-11 18:58:33 +00:00
|
|
|
|
|
|
|
|
2015-02-15 00:05:27 +00:00
|
|
|
# Keep Apple Terminal.app's current working directory updated
|
2018-08-07 18:42:02 +00:00
|
|
|
# Based on this answer: https://superuser.com/a/315029
|
2015-02-17 05:49:53 +00:00
|
|
|
# With extra fixes to handle multibyte chars and non-UTF-8 locales
|
2015-02-15 00:05:27 +00:00
|
|
|
|
|
|
|
if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]] && [[ -z "$INSIDE_EMACS" ]]; then
|
2015-02-17 05:49:53 +00:00
|
|
|
# Emits the control sequence to notify Terminal.app of the cwd
|
2015-12-01 13:05:38 +00:00
|
|
|
# Identifies the directory using a file: URI scheme, including
|
|
|
|
# the host name to disambiguate local vs. remote paths.
|
2015-02-17 05:49:53 +00:00
|
|
|
function update_terminalapp_cwd() {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-02-17 05:49:53 +00:00
|
|
|
|
2020-02-28 18:50:17 +00:00
|
|
|
# Percent-encode the host and path names.
|
|
|
|
local URL_HOST URL_PATH
|
|
|
|
URL_HOST="$(omz_urlencode -P $HOST)" || return 1
|
|
|
|
URL_PATH="$(omz_urlencode -P $PWD)" || return 1
|
2015-12-01 13:05:38 +00:00
|
|
|
|
2015-02-17 05:49:53 +00:00
|
|
|
# Undocumented Terminal.app-specific control sequence
|
2020-02-28 18:50:17 +00:00
|
|
|
printf '\e]7;%s\a' "file://$URL_HOST$URL_PATH"
|
2015-02-17 05:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Use a precmd hook instead of a chpwd hook to avoid contaminating output
|
2019-11-19 17:47:12 +00:00
|
|
|
add-zsh-hook precmd update_terminalapp_cwd
|
2015-02-17 05:49:53 +00:00
|
|
|
# Run once to get initial cwd set
|
|
|
|
update_terminalapp_cwd
|
2015-02-15 00:05:27 +00:00
|
|
|
fi
|