|
|
@ -78,15 +78,17 @@ autoload -Uz add-zsh-hook
|
|
|
|
|
|
|
|
|
|
|
|
# Sets the tab and window titles before the prompt is displayed.
|
|
|
|
# Sets the tab and window titles before the prompt is displayed.
|
|
|
|
function set-title-precmd {
|
|
|
|
function set-title-precmd {
|
|
|
|
if [[ "$TERM_PROGRAM" != "Apple_Terminal" ]] && zstyle -t ':omz:terminal' auto-title; then
|
|
|
|
if zstyle -t ':omz:terminal' auto-title; then
|
|
|
|
|
|
|
|
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]]; then
|
|
|
|
|
|
|
|
# Set the current working directory in Apple Terminal.
|
|
|
|
|
|
|
|
printf '\e]7;%s\a' "file://$HOST${PWD// /%20}"
|
|
|
|
|
|
|
|
else
|
|
|
|
set-window-title "${(%):-%~}"
|
|
|
|
set-window-title "${(%):-%~}"
|
|
|
|
for kind in tab screen; do
|
|
|
|
for kind in tab screen; do
|
|
|
|
# Left-truncate the current working directory to 15 characters.
|
|
|
|
# Left-truncate the current working directory to 15 characters.
|
|
|
|
set-${kind}-title "${(%):-%15<...<%~%<<}"
|
|
|
|
set-${kind}-title "${(%):-%15<...<%~%<<}"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
else
|
|
|
|
fi
|
|
|
|
# Set Apple Terminal current working directory.
|
|
|
|
|
|
|
|
printf '\e]7;%s\a' "file://$HOST${PWD// /%20}"
|
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
add-zsh-hook precmd set-title-precmd
|
|
|
|
add-zsh-hook precmd set-title-precmd
|
|
|
|