tmux 启用鼠标控制

新增配置文件~/.tmux.conf,根据版本写入以下内容

  1. tmux2.1:
set-option -g mouse on
  1. tmux2.1(18 October 2015)之后的版本:
set -g mouse on
  1. tmux2.1之前版本:
setw -g mouse-resize-pane on
setw -g mouse-select-pane on
setw -g mouse-select-window on
setw -g mode-mouse on
  1. 查看tmux版本:
tmux -V