Do not set Terminal.app window, tab titles to $PWD
This commit is contained in:
parent
ed4e9af9c4
commit
737d0e51ee
@ -82,14 +82,14 @@ function set-title-precmd {
|
|||||||
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]]; then
|
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]]; then
|
||||||
# Set the current working directory in Apple Terminal.
|
# Set the current working directory in Apple Terminal.
|
||||||
printf '\e]7;%s\a' "file://$HOST${PWD// /%20}"
|
printf '\e]7;%s\a' "file://$HOST${PWD// /%20}"
|
||||||
fi
|
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
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
add-zsh-hook precmd set-title-precmd
|
add-zsh-hook precmd set-title-precmd
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user