2014-12-20 07:24:26 +00:00
|
|
|
# Set terminal window and tab/icon title
|
|
|
|
#
|
|
|
|
# usage: title short_tab_title [long_window_title]
|
|
|
|
#
|
|
|
|
# See: http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#ss3.1
|
|
|
|
# Fully supports screen, iterm, and probably most modern xterm and rxvt
|
|
|
|
# (In screen, only short_tab_title is used)
|
|
|
|
# Limited support for Apple Terminal (Terminal can't set window and tab separately)
|
2011-01-30 07:21:49 +00:00
|
|
|
function title {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-08-01 02:23:12 +00:00
|
|
|
setopt prompt_subst
|
2014-04-23 00:35:47 +00:00
|
|
|
|
2015-02-10 18:43:25 +00:00
|
|
|
[[ "$EMACS" == *term* ]] && return
|
|
|
|
|
|
|
|
# if $2 is unset use $1 as default
|
|
|
|
# if it is set and empty, leave it as is
|
|
|
|
: ${2=$1}
|
|
|
|
|
2015-12-01 13:04:12 +00:00
|
|
|
case "$TERM" in
|
|
|
|
cygwin|xterm*|putty*|rxvt*|ansi)
|
|
|
|
print -Pn "\e]2;$2:q\a" # set window name
|
|
|
|
print -Pn "\e]1;$1:q\a" # set tab name
|
|
|
|
;;
|
|
|
|
screen*)
|
|
|
|
print -Pn "\ek$1:q\e\\" # set screen hardstatus
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then
|
|
|
|
print -Pn "\e]2;$2:q\a" # set window name
|
|
|
|
print -Pn "\e]1;$1:q\a" # set tab name
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD
|
|
|
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~"
|
2015-08-09 19:15:12 +00:00
|
|
|
# Avoid duplication of directory in terminals with independent dir display
|
2015-12-01 13:05:18 +00:00
|
|
|
if [[ "$TERM_PROGRAM" == Apple_Terminal ]]; then
|
2015-08-09 19:15:12 +00:00
|
|
|
ZSH_THEME_TERM_TITLE_IDLE="%n@%m"
|
|
|
|
fi
|
2011-01-30 07:21:49 +00:00
|
|
|
|
2015-02-04 06:00:51 +00:00
|
|
|
# Runs before showing the prompt
|
2011-11-15 06:14:03 +00:00
|
|
|
function omz_termsupport_precmd {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-12-01 13:05:18 +00:00
|
|
|
|
|
|
|
if [[ "$DISABLE_AUTO_TITLE" == true ]]; then
|
2014-12-20 07:24:26 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2011-04-04 12:02:50 +00:00
|
|
|
title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-04 06:00:51 +00:00
|
|
|
# Runs before executing the command
|
2011-11-15 06:14:03 +00:00
|
|
|
function omz_termsupport_preexec {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-12-01 13:05:18 +00:00
|
|
|
setopt extended_glob
|
|
|
|
|
|
|
|
if [[ "$DISABLE_AUTO_TITLE" == true ]]; then
|
2014-12-20 07:24:26 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-03-25 20:01:34 +00:00
|
|
|
# cmd name only, or if this is sudo or ssh, the next cmd
|
2013-09-24 09:11:35 +00:00
|
|
|
local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%}
|
2013-12-14 03:30:29 +00:00
|
|
|
local LINE="${2:gs/%/%%}"
|
2014-03-25 20:01:34 +00:00
|
|
|
|
2013-12-16 08:24:24 +00:00
|
|
|
title '$CMD' '%100>...>$LINE%<<'
|
2011-01-30 07:21:49 +00:00
|
|
|
}
|
2011-11-15 06:14:03 +00:00
|
|
|
|
2014-08-22 22:59:17 +00:00
|
|
|
precmd_functions+=(omz_termsupport_precmd)
|
|
|
|
preexec_functions+=(omz_termsupport_preexec)
|
2015-02-11 18:58:33 +00:00
|
|
|
|
|
|
|
|
2015-02-15 00:05:27 +00:00
|
|
|
# Keep Apple Terminal.app's current working directory updated
|
|
|
|
# Based on this answer: http://superuser.com/a/315029
|
2015-02-17 05:49:53 +00:00
|
|
|
# With extra fixes to handle multibyte chars and non-UTF-8 locales
|
2015-02-15 00:05:27 +00:00
|
|
|
|
|
|
|
if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]] && [[ -z "$INSIDE_EMACS" ]]; then
|
2015-02-17 05:49:53 +00:00
|
|
|
# Emits the control sequence to notify Terminal.app of the cwd
|
2015-12-01 13:05:38 +00:00
|
|
|
# Identifies the directory using a file: URI scheme, including
|
|
|
|
# the host name to disambiguate local vs. remote paths.
|
2015-02-17 05:49:53 +00:00
|
|
|
function update_terminalapp_cwd() {
|
2015-08-18 00:55:41 +00:00
|
|
|
emulate -L zsh
|
2015-02-17 05:49:53 +00:00
|
|
|
|
|
|
|
# Percent-encode the pathname.
|
2015-10-31 18:53:41 +00:00
|
|
|
local URL_PATH="$(omz_urlencode -P $PWD)"
|
2015-02-17 05:49:53 +00:00
|
|
|
[[ $? != 0 ]] && return 1
|
2015-12-01 13:05:38 +00:00
|
|
|
|
2015-02-17 05:49:53 +00:00
|
|
|
# Undocumented Terminal.app-specific control sequence
|
2015-12-01 13:05:38 +00:00
|
|
|
printf '\e]7;%s\a' "file://$HOST$URL_PATH"
|
2015-02-17 05:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Use a precmd hook instead of a chpwd hook to avoid contaminating output
|
|
|
|
precmd_functions+=(update_terminalapp_cwd)
|
|
|
|
# Run once to get initial cwd set
|
|
|
|
update_terminalapp_cwd
|
2015-02-15 00:05:27 +00:00
|
|
|
fi
|