| 1234567891011 |
- # vim: ft=tmux
- # Settings for tmux pre-2.1
- # Mouse Support! (for scrollback, and lazy manipulation of windows/panes)
- # At least with iTerm2, this plays very well with vim mouse support :D Yay!
- # Note: text-selection by default does a tmux copy (paste with prefix+]).
- # Hold alt/meta/option for system selection/copy.
- set-option -g mode-mouse on
- set-option -g mouse-select-pane
- set-option -g mouse-resize-pane on
- set-option -g mouse-select-window on
|