Files
zeesh/base/precmd.zsh
T

16 lines
337 B
Bash
Raw Normal View History

2020-04-21 16:35:43 -07:00
typeset -ag precmd_functions
2026-04-22 14:00:51 -07:00
typeset -ag preexec_functions
2020-04-21 16:35:43 -07:00
function precmd_tab_directory () {
2026-04-22 14:00:51 -07:00
print -Pn -- '\e]0;%n@%m: %~\a'
2020-04-21 16:35:43 -07:00
}
2026-04-22 14:00:51 -07:00
precmd_functions+="precmd_tab_directory"
function preexec_tab_status () {
print -Pn -- '\e]0;'
print -n "$1"
print -Pn -- ' (%~)\a'
}
preexec_functions+="preexec_tab_status"