答案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
设置。