This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/functions/terminal.zsh

56 lines
1.7 KiB
Bash
Raw Normal View History

# Dumb terminals lack support.
if [[ "$TERM" == 'dumb' ]]; then
return
fi
2011-02-27 10:13:57 -05:00
# Set the GNU Screen window number.
if [[ -n "$WINDOW" ]]; then
SCREEN_NO="%B$WINDOW%b "
else
SCREEN_NO=""
fi
# 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-07-28 16:41:39 -04:00
if ! check-bool "$DISABLE_AUTO_TITLE"; 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}
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}
# 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}
fi
fi
}
2011-07-16 21:43:51 -04:00
# Don't override precmd/preexec, append to hook array.
autoload -Uz add-zsh-hook
# 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-07-16 21:43:51 -04:00
add-zsh-hook precmd terminal-title-precmd
# Set the tab and window titles before command execution.
2011-07-16 21:43:51 -04:00
function terminal-title-preexec {
emulate -L zsh
setopt extended_glob
# 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-07-16 21:43:51 -04:00
add-zsh-hook preexec terminal-title-preexec