mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-12 01:52:31 +01:00
some todo notes, take @chris2's titlebar improvements and poke at completions
This commit is contained in:
parent
65bbe3fa6a
commit
82e2883a41
4 changed files with 53 additions and 21 deletions
37
xterms.zsh
37
xterms.zsh
|
|
@ -1,16 +1,21 @@
|
|||
# Specific to xterms, such as OS X terminal
|
||||
|
||||
if [[ "${TERM}" == xterm* ]]; then
|
||||
unset TMOUT
|
||||
|
||||
precmd () {
|
||||
print -Pn "\033]0;%n@%m %~\007"
|
||||
#print -Pn "\033]0;%n@%m%# %~ %l %w :: %T\a" ## or use this
|
||||
}
|
||||
|
||||
preexec () {
|
||||
print -Pn "\033]0;%n@%m <$1> %~\007"
|
||||
#print -Pn "\033]0;%n@%m%# <$1> %~ %l %w :: %T\a" ## or use this
|
||||
}
|
||||
|
||||
fi
|
||||
case "$TERM" in
|
||||
xterm*|rxvt*)
|
||||
preexec () {
|
||||
print -Pn "\e]0;%n@%m: $1\a" # xterm
|
||||
}
|
||||
precmd () {
|
||||
print -Pn "\e]0;%n@%m: %~\a" # xterm
|
||||
}
|
||||
;;
|
||||
screen*)
|
||||
preexec () {
|
||||
local CMD=${1[(wr)^(*=*|sudo|ssh|-*)]}
|
||||
echo -ne "\ek$CMD\e\\"
|
||||
print -Pn "\e]0;%n@%m: $1\a" # xterm
|
||||
}
|
||||
precmd () {
|
||||
echo -ne "\ekzsh\e\\"
|
||||
print -Pn "\e]0;%n@%m: %~\a" # xterm
|
||||
}
|
||||
;;
|
||||
esac
|
||||
Loading…
Add table
Add a link
Reference in a new issue