"tmux set -g mouse-mode on" not scrolling
tmux
Solution
So this option has been renamed in version 2.1 (18 October 2015)
From the changelog:
Mouse-mode has been rewritten. There's now no longer options for:
- mouse-resize-pane
- mouse-select-pane
- mouse-select-window
- mode-mouse
Instead there is just one option: 'mouse' which turns on mouse support
So this is what I'm using now in my `.tmux.conf` file
set -g mouse on
Problem
To allow scrolling a tmux pane with a mouse, I put the following in my `~/.tmux.conf` file: ``` set -g mouse-mode on ``` However, nothing changes. When I scroll, it still scrolls outside of tmux. Why is this?