滚动我的tmux时会自动向下滚动

时间:2014-01-31 21:19:27

标签: configuration tmux exceed

我正在使用tmux(我使用超过ssh连接到linux) 我添加了神奇的set -g terminal-overrides 'xterm*:smcup@:rmcup@',它可以启用鼠标滚动,效果非常好!

虽然我遇到了问题,但当我由于某种原因向上滚动中间按钮时,光标很快就会回到页面上(就像我输入q一样)。 我不知道这是一件令人愉快的事情还是......

我在任何情况下添加.tmux.conf文件

# change prefix key to C-a like screen and also C-a-a to send it into
# a session within a session
unbind C-b
set -g prefix C-a
bind-key a send-prefix
# toggle last like screen
bind-key C-a last-window
bind-key C-c new-window
# a readable status line
set -g status-bg blue
set -g status-right "%Y-%m-%d %H:%M:%S"
set -g status-interval 1
# misc tweaks
#set -g display-time 3000
set -g history-limit 5000
#set -g bell-action any
#set -g visual-activity on
#set -g visual-bell on
# Sane scrolling
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# Bellow allow scrolling with mouse (enter normal browsing mode automatically)
#set -g mode-mouse on

1 个答案:

答案 0 :(得分:3)

set -g status-right "%Y-%m-%d %H:%M:%S"

此配置每秒都会生成tmux更新状态行。