Search code examples
linuxtmux

How to enable scrolling in tmux panels with mouse wheel?


Need to enable scrolling into tmux panels with mouse wheel. How can I get that tips? Can I use it (if its exist of course) with mouse-select-pane on option?


Solution

  • Origin Answer (deprecated)

    Try this:

    setw -g mode-mouse on
    

    It can be used with the mouse-select-pane on and mouse-select-window on options.

    Update

    After tmux 2.1, mode-mouse option is no longer available. You should now use:

    set -g mouse on
    

    to capture mouse event.