tmux 滚动缓慢,scroll-speed-num-lines-per-scroll 似乎不起作用

tmux 滚动缓慢,scroll-speed-num-lines-per-scroll 似乎不起作用

我试图让 tmux 滚动得和 iTerm2 一样快,

%> tmux -V
tmux 2.3
%> cat ~/.tmux.conf
set-option -g mouse on
set -g @scroll-speed-num-lines-per-scroll 5

但我的配置似乎不起作用,我可以看到行号变化缓慢,所以这肯定不起作用

在此输入图像描述

有任何想法吗?

答案1

我能够使用 tmux 插件来完成这项工作。

首先,我安装了全员生产管理

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

然后我配置@scroll-speed-num-lines-per-scroll并添加tmux-better-mouse-mode和 TPM 到我的~/.tmux.conf

set -g @scroll-speed-num-lines-per-scroll 1  # change to the speed you'd like

set -g @plugin 'nhdaly/tmux-better-mouse-mode'

run -b '~/.tmux/plugins/tpm/tpm'

重新加载我的 tmux conf 后,我跑去prefix+I安装插件,滚动速度响应了@scroll-speed-num-lines-per-scroll设置。

相关内容