2011-06-01 02:48:26 -04:00
|
|
|
# Dumb terminals lack support.
|
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
|
|
|
return
|
|
|
|
fi
|
2011-02-27 10:13:57 -05:00
|
|
|
|
2011-07-14 17:23:17 -04:00
|
|
|
# Set the GNU Screen window number.
|
|
|
|
if [[ -n "$WINDOW" ]]; then
|
|
|
|
SCREEN_NO="%B$WINDOW%b "
|
|
|
|
else
|
|
|
|
SCREEN_NO=""
|
|
|
|
fi
|
|
|
|
|
2011-06-01 02:48:26 -04:00
|
|
|
# Fully supports GNU Screen, iTerm, and most modern xterm and rxvt terminals.
|
|
|
|
# Partially supports Mac OS X Terminal since it can't set window and tab separately.
|
|
|
|
# Usage: title "tab title" "window title"
|
2011-07-16 21:43:51 -04:00
|
|
|
function terminal-title {
|
2011-06-01 02:48:26 -04:00
|
|
|
if [[ "$DISABLE_AUTO_TITLE" != 'true' ]]; then
|
|
|
|
if [[ "$TERM" == screen* ]]; then
|
|
|
|
# Set GNU Screen's hardstatus (usually truncated at 20 characters).
|
2011-07-16 21:43:51 -04:00
|
|
|
printf "\ek%s\e\\" ${(V)1}
|
2011-06-01 02:48:26 -04:00
|
|
|
elif [[ "$TERM" == xterm* ]] || [[ "$TERM" == rxvt* ]]; then
|
|
|
|
# Set the window title.
|
2011-07-16 21:43:51 -04:00
|
|
|
printf "\e]2;%s\a" ${(V)2}
|
2011-06-01 02:48:26 -04:00
|
|
|
# Set the tab title (will override window title on a broken terminal).
|
2011-07-16 21:43:51 -04:00
|
|
|
printf "\e]1;%s\a" ${(V)1}
|
2011-06-01 02:48:26 -04:00
|
|
|
fi
|
2011-01-30 02:21:49 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-07-16 21:43:51 -04:00
|
|
|
# Don't override precmd/preexec, append to hook array.
|
|
|
|
autoload -Uz add-zsh-hook
|
2011-01-30 02:21:49 -05:00
|
|
|
|
2011-06-01 02:48:26 -04:00
|
|
|
# Set the tab and window titles before the prompt is displayed.
|
2011-07-16 21:43:51 -04:00
|
|
|
function terminal-title-precmd {
|
|
|
|
# 15 character, left-truncated current working directory.
|
|
|
|
local terminal_tab_title="${(%):-%15<...<%~%<<}"
|
|
|
|
local terminal_window_title="${(%):-%n@%m: %~}"
|
|
|
|
terminal-title "$terminal_tab_title" "$terminal_window_title"
|
2011-01-30 02:21:49 -05:00
|
|
|
}
|
2011-07-16 21:43:51 -04:00
|
|
|
add-zsh-hook precmd terminal-title-precmd
|
2011-01-30 02:21:49 -05:00
|
|
|
|
2011-06-01 02:48:26 -04:00
|
|
|
# Set the tab and window titles before command execution.
|
2011-07-16 21:43:51 -04:00
|
|
|
function terminal-title-preexec {
|
2011-04-04 08:02:50 -04:00
|
|
|
emulate -L zsh
|
|
|
|
setopt extended_glob
|
2011-06-01 02:48:26 -04:00
|
|
|
# Command name only, or if this is sudo or ssh, the next command.
|
|
|
|
local CMD=${1[(wr)^(*=*|sudo|ssh|-*)]}
|
2011-07-16 21:43:51 -04:00
|
|
|
local trimmed="${2[1,100]}"
|
|
|
|
if [[ "$2" != "$trimmed" ]]; then
|
|
|
|
trimmed="${trimmed}..."
|
|
|
|
fi
|
|
|
|
terminal-title "$CMD" "$trimmed"
|
2011-01-30 02:21:49 -05:00
|
|
|
}
|
2011-07-16 21:43:51 -04:00
|
|
|
add-zsh-hook preexec terminal-title-preexec
|
|
|
|
|