2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Sets terminal window and tab titles.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-07-23 19:00:44 +00:00
|
|
|
# Return if requirements are not found.
|
2014-01-10 01:07:40 +00:00
|
|
|
if [[ "$TERM" == (dumb|linux|*bsd*) ]]; 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
|
|
|
|
2013-08-27 19:53:49 +00:00
|
|
|
# Sets the terminal or terminal multiplexer window title.
|
|
|
|
function set-window-title {
|
2013-08-28 21:13:14 +00:00
|
|
|
local title_format{,ted}
|
|
|
|
zstyle -s ':prezto:module:terminal:window-title' format 'title_format' || title_format="%s"
|
|
|
|
zformat -f title_formatted "$title_format" "s:$argv"
|
|
|
|
|
2011-08-01 06:50:51 +00:00
|
|
|
if [[ "$TERM" == screen* ]]; then
|
2013-08-28 21:13:14 +00:00
|
|
|
title_format="\ek%s\e\\"
|
2013-08-27 19:53:49 +00:00
|
|
|
else
|
2013-08-28 21:13:14 +00:00
|
|
|
title_format="\e]2;%s\a"
|
2011-08-01 06:50:51 +00:00
|
|
|
fi
|
2013-08-28 21:13:14 +00:00
|
|
|
|
|
|
|
printf "$title_format" "${(V%)title_formatted}"
|
2011-08-01 06:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Sets the terminal tab title.
|
2013-08-27 19:53:49 +00:00
|
|
|
function set-tab-title {
|
2013-08-28 21:13:14 +00:00
|
|
|
local title_format{,ted}
|
|
|
|
zstyle -s ':prezto:module:terminal:tab-title' format 'title_format' || title_format="%s"
|
|
|
|
zformat -f title_formatted "$title_format" "s:$argv"
|
|
|
|
|
|
|
|
printf "\e]1;%s\a" ${(V%)title_formatted}
|
2013-03-01 00:22:16 +00:00
|
|
|
}
|
|
|
|
|
2012-09-25 05:30:20 +00:00
|
|
|
# Sets the tab and window titles with a given command.
|
2013-08-28 19:40:07 +00:00
|
|
|
function _terminal-set-titles-with-command {
|
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.
|
2013-08-27 19:53:49 +00:00
|
|
|
if [[ "${2[(w)1]}" == (fg|%*)(\;|) ]]; then
|
2011-08-01 06:50:51 +00:00
|
|
|
# Get the job name, and, if missing, set it to the default %+.
|
2013-08-27 19:53:49 +00:00
|
|
|
local job_name="${${2[(wr)%*(\;|)]}:-%+}"
|
2011-08-01 06:50:51 +00:00
|
|
|
|
|
|
|
# Make a local copy for use in the subshell.
|
|
|
|
local -A jobtexts_from_parent_shell
|
|
|
|
jobtexts_from_parent_shell=(${(kv)jobtexts})
|
|
|
|
|
2013-08-27 19:53:49 +00:00
|
|
|
jobs "$job_name" 2>/dev/null > >(
|
2011-08-01 06:50:51 +00:00
|
|
|
read index discarded
|
|
|
|
# The index is already surrounded by brackets: [1].
|
2013-08-28 19:40:07 +00:00
|
|
|
_terminal-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.
|
2013-08-27 19:53:49 +00:00
|
|
|
local cmd="${${2[(wr)^(*=*|sudo|ssh|-*)]}:t}"
|
2012-09-25 05:30:20 +00:00
|
|
|
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
|
|
|
|
2013-08-27 19:53:49 +00:00
|
|
|
set-window-title "$cmd"
|
|
|
|
set-tab-title "$truncated_cmd"
|
2012-09-25 05:30:20 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Sets the tab and window titles with a given path.
|
2013-08-28 19:40:07 +00:00
|
|
|
function _terminal-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}"
|
2013-03-01 00:22:16 +00:00
|
|
|
local abbreviated_path="${absolute_path/#$HOME/~}"
|
|
|
|
local truncated_path="${abbreviated_path/(#m)?(#c15,)/...${MATCH[-12,-1]}}"
|
|
|
|
unset MATCH
|
2011-08-01 06:50:51 +00:00
|
|
|
|
2013-08-27 19:53:49 +00:00
|
|
|
set-window-title "$abbreviated_path"
|
|
|
|
set-tab-title "$truncated_path"
|
|
|
|
}
|
|
|
|
|
2013-08-26 16:12:44 +00:00
|
|
|
# Do not override precmd/preexec; append to the hook array.
|
2011-07-17 01:43:51 +00:00
|
|
|
autoload -Uz add-zsh-hook
|
2011-01-30 07:21:49 +00:00
|
|
|
|
2013-08-26 16:12:44 +00:00
|
|
|
# Set up the Apple Terminal.
|
|
|
|
if [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]] \
|
2013-08-27 19:53:49 +00:00
|
|
|
&& ( ! [[ -n "$STY" || -n "$TMUX" || -n "$DVTM" ]] )
|
2013-08-26 16:12:44 +00:00
|
|
|
then
|
|
|
|
# Sets the Terminal.app current working directory before the prompt is
|
2014-10-10 00:35:48 +00:00
|
|
|
# displayed.
|
2014-10-10 03:31:01 +00:00
|
|
|
function _terminal-set-terminal-app-proxy-icon {
|
|
|
|
printf '\e]7;%s\a' "file://${HOST}${PWD// /%20}"
|
|
|
|
}
|
2013-08-28 19:40:07 +00:00
|
|
|
add-zsh-hook precmd _terminal-set-terminal-app-proxy-icon
|
2013-03-01 00:22:16 +00:00
|
|
|
|
2014-10-10 00:35:48 +00:00
|
|
|
# Unsets the Terminal.app current working directory when a terminal
|
|
|
|
# multiplexer or remote connection is started since it can no longer be
|
2013-08-26 16:12:44 +00:00
|
|
|
# updated, and it becomes confusing when the directory displayed in the title
|
|
|
|
# bar is no longer synchronized with real current working directory.
|
2014-10-10 00:35:48 +00:00
|
|
|
function _terminal-unset-terminal-app-proxy-icon {
|
2013-08-26 16:12:44 +00:00
|
|
|
if [[ "${2[(w)1]:t}" == (screen|tmux|dvtm|ssh|mosh) ]]; then
|
2014-10-10 03:31:01 +00:00
|
|
|
print '\e]7;\a'
|
2013-08-26 16:12:44 +00:00
|
|
|
fi
|
2014-10-10 00:35:48 +00:00
|
|
|
}
|
|
|
|
add-zsh-hook preexec _terminal-unset-terminal-app-proxy-icon
|
2013-08-26 16:12:44 +00:00
|
|
|
|
2013-03-01 00:22:16 +00:00
|
|
|
# Do not set the tab and window titles in Terminal.app since it sets the tab
|
|
|
|
# title to the currently running process by default and the current working
|
2013-08-27 19:53:49 +00:00
|
|
|
# directory is set separately.
|
2014-10-10 00:35:48 +00:00
|
|
|
return
|
2013-03-01 00:22:16 +00:00
|
|
|
fi
|
|
|
|
|
2013-08-26 16:12:44 +00:00
|
|
|
# Set up non-Apple terminals.
|
2013-08-27 19:53:49 +00:00
|
|
|
if zstyle -t ':prezto:module:terminal' auto-title \
|
|
|
|
&& ( ! [[ -n "$STY" || -n "$TMUX" ]] )
|
2013-08-26 16:12:44 +00:00
|
|
|
then
|
2014-10-10 00:35:48 +00:00
|
|
|
# Sets the tab and window titles before the prompt is displayed.
|
|
|
|
add-zsh-hook precmd _terminal-set-titles-with-path
|
2013-08-26 16:12:44 +00:00
|
|
|
|
2014-10-10 00:35:48 +00:00
|
|
|
# Sets the tab and window titles before command execution.
|
|
|
|
add-zsh-hook preexec _terminal-set-titles-with-command
|
2013-08-26 16:12:44 +00:00
|
|
|
fi
|