Browse Source

Rename terminal auto-title zstyle for consistency

master
Sorin Ionescu 12 years ago
parent
commit
6727edd536
  1. 2
      templates/zshrc.zsh
  2. 4
      terminal.zsh

2
templates/zshrc.zsh

@ -18,7 +18,7 @@ zstyle ':omz:*:*' case-sensitive 'no' @@ -18,7 +18,7 @@ zstyle ':omz:*:*' case-sensitive 'no'
zstyle ':omz:*:*' color 'yes'
# Auto set the tab and window titles.
zstyle ':omz:terminal' auto-title 'yes'
zstyle ':omz:terminal:auto' title 'yes'
# Set the plugins to load (see $OMZ/plugins/).
zstyle ':omz:load' plugin 'archive' 'git'

4
terminal.zsh

@ -78,7 +78,7 @@ autoload -Uz add-zsh-hook @@ -78,7 +78,7 @@ autoload -Uz add-zsh-hook
# Sets the tab and window titles before the prompt is displayed.
function set-title-precmd {
if [[ "$TERM_PROGRAM" != "Apple_Terminal" ]] && zstyle -t ':omz:terminal' auto-title; then
if [[ "$TERM_PROGRAM" != "Apple_Terminal" ]] && zstyle -t ':omz:terminal:auto' title; then
set-window-title "${(%):-%~}"
for kind in tab screen; do
# Left-truncate the current working directory to 15 characters.
@ -93,7 +93,7 @@ add-zsh-hook precmd set-title-precmd @@ -93,7 +93,7 @@ add-zsh-hook precmd set-title-precmd
# Sets the tab and window titles before command execution.
function set-title-preexec {
if zstyle -t ':omz:terminal' auto-title; then
if zstyle -t ':omz:terminal:auto' title; then
set-title-by-command "$2"
fi
}

Loading…
Cancel
Save