DL
Size: a a a
A
A
DL
case "$TERM" in
dumb)
unsetopt zle
unsetopt prompt_cr
unsetopt prompt_subst
unfunction precmd
unfunction preexec
PS1='$ '
;;
eterm-color)
unfunction precmd
unfunction preexec
RPS1=''
;;
screen*)
;;
xterm)
test -z "$SSH_CLIENT" && tmux
;;
*)
tmux
;;
esac
DL
A
DL
DL
DL
A
DL
DL
case "$TERM" in
dumb)
PS1='$ '
;;
eterm-color)
;;
screen*)
;;
xterm)
test -z "$SSH_CLIENT" && tmux
;;
*)
tmux
;;
esac
A
A
DL
DL
DL
A
DL
D