它在 vim 中可以滚动,但在 tmux 中不能滚动。
我遵循了诸如添加之类的建议
set -g history-limit 1000
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
setw -g mode-mouse on
set-window-option -g mode-mouse on
.tmux.conf
但他们都没有帮助
我得到的只是历史命令滚动。
它在 vim 中可以滚动,但在 tmux 中不能滚动。
我遵循了诸如添加之类的建议
set -g history-limit 1000
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
setw -g mode-mouse on
set-window-option -g mode-mouse on
.tmux.conf
但他们都没有帮助
我得到的只是历史命令滚动。
正确的命令是:
set -g mode-mouse on
你也可以将它添加到你的 ~/.tmux.conf
只是将两个相关答案联系在一起:
为什么
tmux set -g mouse-mode on
不再工作?
正如此答案中所指出的,该选项自tmux 2.1 版以来已重命名为:
tmux set -g mouse on
要查找本地 tmux 版本,只需运行tmux -V
.
set -g mouse on
如果它在你的 ~/.tmux.conf 中,就像这样