2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Sets terminal window and tab titles.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# James Cox <james@imaj.es>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2011-06-01 06:48:26 +00:00
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2012-03-28 16:19:53 +00:00
|
|
|
return 1
|
2011-06-01 06:48:26 +00:00
|
|
|
fi
|
2011-02-27 15:13:57 +00:00
|
|
|
|
2011-07-14 21:23:17 +00:00
|
|
|
# Set the GNU Screen window number.
|
|
|
|
if [[ -n "$WINDOW" ]]; then
|
2011-08-01 06:50:51 +00:00
|
|
|
export SCREEN_NO="%B${WINDOW}%b "
|
2011-07-14 21:23:17 +00:00
|
|
|
else
|
2011-08-01 06:50:51 +00:00
|
|
|
export SCREEN_NO=""
|
2011-07-14 21:23:17 +00:00
|
|
|
fi
|
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
# Sets the GNU Screen title.
|
2012-09-25 05:30:20 +00:00
|
|
|
function set-screen-window-title {
|
2011-08-01 06:50:51 +00:00
|
|
|
if [[ "$TERM" == screen* ]]; then
|
|
|
|
printf "\ek%s\e\\" ${(V)argv}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Sets the terminal window title.
|
2012-09-25 05:30:20 +00:00
|
|
|
function set-terminal-window-title {
|
2011-08-01 06:50:51 +00:00
|
|
|
if [[ "$TERM" == ((x|a|ml|dt|E)term*|(u|)rxvt*) ]]; then
|
|
|
|
printf "\e]2;%s\a" ${(V)argv}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Sets the terminal tab title.
|
2012-09-25 05:30:20 +00:00
|
|
|
function set-terminal-tab-title {
|
2011-08-01 06:50:51 +00:00
|
|
|
if [[ "$TERM" == ((x|a|ml|dt|E)term*|(u|)rxvt*) ]]; then
|
|
|
|
printf "\e]1;%s\a" ${(V)argv}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-09-25 05:30:20 +00:00
|
|
|
# Sets the tab and window titles with a given command.
|
|
|
|
function set-titles-with-command {
|
|
|
|
# Do not set the window and tab titles in Terminal.app because they are not
|
|
|
|
# reset upon command termination.
|
|
|
|
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
emulate -L zsh
|
2012-09-25 16:30:19 +00:00
|
|
|
setopt EXTENDED_GLOB
|
2011-08-01 06:50:51 +00:00
|
|
|
|
|
|
|
# Get the command name that is under job control.
|
|
|
|
if [[ "${1[(w)1]}" == (fg|%*)(\;|) ]]; then
|
|
|
|
# Get the job name, and, if missing, set it to the default %+.
|
|
|
|
local job_name="${${1[(wr)%*(\;|)]}:-%+}"
|
|
|
|
|
|
|
|
# Make a local copy for use in the subshell.
|
|
|
|
local -A jobtexts_from_parent_shell
|
|
|
|
jobtexts_from_parent_shell=(${(kv)jobtexts})
|
|
|
|
|
|
|
|
jobs $job_name 2>/dev/null > >(
|
|
|
|
read index discarded
|
|
|
|
# The index is already surrounded by brackets: [1].
|
2012-09-25 05:30:20 +00:00
|
|
|
set-titles-with-command "${(e):-\$jobtexts_from_parent_shell$index}"
|
2011-08-01 06:50:51 +00:00
|
|
|
)
|
|
|
|
else
|
|
|
|
# Set the command name, or in the case of sudo or ssh, the next command.
|
2012-09-25 05:30:20 +00:00
|
|
|
local cmd=${${1[(wr)^(*=*|sudo|ssh|-*)]}:t}
|
|
|
|
local truncated_cmd="${cmd/(#m)?(#c15,)/${MATCH[1,12]}...}"
|
2012-09-26 20:51:32 +00:00
|
|
|
unset MATCH
|
2011-08-01 06:50:51 +00:00
|
|
|
|
2012-09-25 05:30:20 +00:00
|
|
|
if [[ "$TERM" == screen* ]]; then
|
|
|
|
set-screen-window-title "$truncated_cmd"
|
|
|
|
else
|
|
|
|
set-terminal-window-title "$cmd"
|
|
|
|
set-terminal-tab-title "$truncated_cmd"
|
2011-06-01 06:48:26 +00:00
|
|
|
fi
|
2012-09-25 05:30:20 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Sets the tab and window titles with a given path.
|
|
|
|
function set-titles-with-path {
|
2012-09-25 15:04:50 +00:00
|
|
|
emulate -L zsh
|
|
|
|
setopt EXTENDED_GLOB
|
|
|
|
|
2012-09-25 05:30:20 +00:00
|
|
|
local absolute_path="${${1:a}:-$PWD}"
|
2011-08-01 06:50:51 +00:00
|
|
|
|
2012-09-25 05:30:20 +00:00
|
|
|
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]]; then
|
|
|
|
printf '\e]7;%s\a' "file://$HOST${absolute_path// /%20}"
|
|
|
|
else
|
|
|
|
local abbreviated_path="${absolute_path/#$HOME/~}"
|
|
|
|
local truncated_path="${abbreviated_path/(#m)?(#c15,)/...${MATCH[-12,-1]}}"
|
2012-09-26 20:51:32 +00:00
|
|
|
unset MATCH
|
2012-09-25 05:30:20 +00:00
|
|
|
|
|
|
|
if [[ "$TERM" == screen* ]]; then
|
|
|
|
set-screen-window-title "$truncated_path"
|
|
|
|
else
|
|
|
|
set-terminal-window-title "$abbreviated_path"
|
|
|
|
set-terminal-tab-title "$truncated_path"
|
|
|
|
fi
|
2011-01-30 07:21:49 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
# Don't override precmd/preexec; append to hook array.
|
2011-07-17 01:43:51 +00:00
|
|
|
autoload -Uz add-zsh-hook
|
2011-01-30 07:21:49 +00:00
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
# Sets the tab and window titles before the prompt is displayed.
|
2012-09-25 05:30:20 +00:00
|
|
|
function set-titles-precmd {
|
2012-09-03 20:08:39 +00:00
|
|
|
if zstyle -t ':prezto:module:terminal' auto-title; then
|
2012-09-25 05:30:20 +00:00
|
|
|
set-titles-with-path
|
2011-08-01 06:50:51 +00:00
|
|
|
fi
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
2012-09-25 05:30:20 +00:00
|
|
|
add-zsh-hook precmd set-titles-precmd
|
2011-01-30 07:21:49 +00:00
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
# Sets the tab and window titles before command execution.
|
2012-09-25 05:30:20 +00:00
|
|
|
function set-titles-preexec {
|
2012-09-03 20:08:39 +00:00
|
|
|
if zstyle -t ':prezto:module:terminal' auto-title; then
|
2012-09-25 05:30:20 +00:00
|
|
|
set-titles-with-command "$2"
|
2011-07-17 01:43:51 +00:00
|
|
|
fi
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
2012-09-25 05:30:20 +00:00
|
|
|
add-zsh-hook preexec set-titles-preexec
|
2011-07-17 01:43:51 +00:00
|
|
|
|