mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
tmux: use $terminfo to avoid echoti errors
See https://github.com/robbyrussell/oh-my-zsh/issues/7407#issuecomment-441665143
This commit is contained in:
parent
e8aba1bf59
commit
e780209c33
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ alias tkss='tmux kill-session -t'
|
|||
: ${ZSH_TMUX_FIXTERM_WITH_256COLOR:=screen-256color}
|
||||
|
||||
# Determine if the terminal supports 256 colors
|
||||
if [[ $(echoti colors) == 256 ]]; then
|
||||
if [[ $terminfo[colors] == 256 ]]; then
|
||||
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
|
||||
else
|
||||
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
|
||||
|
|
Loading…
Reference in a new issue