禁用tmux状态左侧突出显示

时间:2015-04-21 18:19:02

标签: tmux

我的tmux配置几乎完全是我想要的,但由于某种原因,我的状态离开后台在运行一段时间后仍然变为红/绿。如果可能,我真的想摆脱这个。

以下是发生的事情的图像: enter image description here

这是我的.tmux.conf的一个子集,它是相关的。 colour226是我的黄色,colour16是我的黑色:

# colors
set -g status-fg colour226
set -g status-bg colour16
set -g pane-active-border-fg colour226
set -g pane-active-border-bg colour226
set -g message-fg colour226
set -g message-bg colour16
set -g message-attr bright

# status bar
set -g window-status-current-bg colour226
set -g window-status-current-fg colour16
set -g window-status-current-attr bright
set -g window-status-current-format "#I:#W"
set -g window-status-format "#I:#W"
set -g window-status-style fg=green

set -g status-left-length 40
set -g status-left-style bg=colour16
set -g status-left "[#W]"
set -g status-left-attr bright

set -g status-right "%d %b %R"

set -g status-interval 60
set -g status-justify centre
setw -g monitor-activity on

你可以看到我试图强制状态左背景为黑色,但我认为活动监视器会导致它显示在那里。

我一直在查看手册页,但没有找到任何内容。关于如何禁用突出显示的任何想法?

1 个答案:

答案 0 :(得分:0)

正如你所说,这是“监视活动”。你为什么不把它关掉? (这就是我所做的,出于同样的原因)