[Fix #163] Selectively set terminal title in preexec

Apple Terminal will now reset the terminal title after a command has finished
executing.
This commit is contained in:
Sorin Ionescu 2012-05-05 16:54:38 -04:00
parent e541283126
commit a438b146fe

View File

@ -102,7 +102,9 @@ add-zsh-hook precmd set-title-precmd
# Sets the tab and window titles before command execution.
function set-title-preexec {
if zstyle -t ':omz:module:terminal' auto-title; then
set-title-by-command "$2"
if [[ "$TERM_PROGRAM" != 'Apple_Terminal' ]]; then
set-title-by-command "$2"
fi
fi
}
add-zsh-hook preexec set-title-preexec