Configure tmux scroll speed

前端 未结 6 1562
时光取名叫无心
时光取名叫无心 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:04

    There's a mod for tmux allowing to specify any number of commands for 'mode' keybindings: http://ershov.github.io/tmux/

    You could scroll-up or scroll-down several times or do it in a loop or even create a procedure to be executed.

    For example:

    bind -t emacs-copy WheelUpPane tcl { scroll-up ; scroll-up }
    

提交回复
热议问题