Configure tmux scroll speed

前端 未结 6 1564
时光取名叫无心
时光取名叫无心 2021-02-04 00:29

Can tmux scroll speed (using a mouse wheel or touch pad) be configured?

Tmux 2.1 sort of broke scrolling (depending on your configuration), forcing me to update my confi

6条回答
  •  独厮守ぢ
    2021-02-04 01:01

    I couldn't get any of the answers here working as of tmux 2.6 (last tested on 2.9), eventually figured it out so posting another answer.

    This works as a stand-alone configuration file.

    set -g mouse on
    
    set-option -g status-keys vi
    set-window-option -g mode-keys vi
    
    bind-key -T copy-mode-vi WheelUpPane send-keys -X halfpage-up
    bind-key -T copy-mode-vi WheelDownPane send-keys -X halfpage-down
    

提交回复
热议问题