mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
Added ZSH_THEME_TERM_TAB_TITLE_EXEC and ZSH_THEME_TERM_TITLE_EXEC configuration variables to allow pre-exec title configuration
This commit is contained in:
parent
75b9030f48
commit
1409f0584b
1 changed files with 9 additions and 2 deletions
|
|
@ -33,7 +33,9 @@ function omz_termsupport_precmd {
|
||||||
title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE
|
title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE
|
||||||
}
|
}
|
||||||
|
|
||||||
# Runs before executing the command
|
# Runs before executing the command; @CMD@ is the command run; @LINE@ is the rest of the line
|
||||||
|
ZSH_THEME_TERM_TAB_TITLE_EXEC='@CMD@'
|
||||||
|
ZSH_THEME_TERM_TITLE_EXEC='%100>...>@LINE@%<<'
|
||||||
function omz_termsupport_preexec {
|
function omz_termsupport_preexec {
|
||||||
if [[ $DISABLE_AUTO_TITLE == true ]]; then
|
if [[ $DISABLE_AUTO_TITLE == true ]]; then
|
||||||
return
|
return
|
||||||
|
|
@ -46,7 +48,12 @@ function omz_termsupport_preexec {
|
||||||
local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]:gs/%/%%}
|
local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]:gs/%/%%}
|
||||||
local LINE="${2:gs/%/%%}"
|
local LINE="${2:gs/%/%%}"
|
||||||
|
|
||||||
title '$CMD' '%100>...>$LINE%<<'
|
local tab_title=${ZSH_THEME_TERM_TAB_TITLE_EXEC//@CMD@/$CMD}
|
||||||
|
tab_title=${tab_title//@LINE@/$LINE}
|
||||||
|
local title=${ZSH_THEME_TERM_TITLE_EXEC//@CMD@/$CMD}
|
||||||
|
title=${title//@LINE@/$LINE}
|
||||||
|
|
||||||
|
title "$tab_title" "$title"
|
||||||
}
|
}
|
||||||
|
|
||||||
precmd_functions+=(omz_termsupport_precmd)
|
precmd_functions+=(omz_termsupport_precmd)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue