Mouse Support Change in tmux 2.1
tmux was updated to 2.1 on both Arch Linux (of course, it’s rolling!) back in October last year.
NOTE:
homebrewfor OS X was pretty quick, too.
I started to notice warnings when spawning the first tmux process.
1  | /home/terry/.tmux.conf:65: unknown option: mode-mouse  | 
It didn’t affect anything so I didn’t give a shit (hit enter and ignored it) until I’ve had enough of the warning.
It’s time to pay down the accumulated technical debt ;-(
Looking at the changes, I immediately realized it was the incompatible change below:
Mouse-mode has been rewritten. There is now no longer options for
{mouse-resize-pane,mouse-select-pane,mouse-select-window,mode-mouse}. Instead a single optionmousewhich turns on mouse support entirely.
Good!
Remove all incompatible mouse-* options and enable mouse support with set -g mouse on.
Reload the configuration file :source-file ~/.tmux.conf.
NOTE: everyone should have
bind-key Rto do this.
Done!
An example ~terry/.tmux.conf
References