Created
March 5, 2013 04:01
-
-
Save dangerous/5087905 to your computer and use it in GitHub Desktop.
TMUX mouse options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MOUSE OPTIONS: Note: text-selection by default does a tmux copy (paste with prefix+]). | |
# Hold alt/meta/option for system selection/copy. | |
# Enter copy mode and copy a selection by dragging | |
set-option -g mode-mouse on | |
# Use the mouse to select the current pane (and pass through the click as normal) | |
set-option -g mouse-select-pane | |
# allow panes to be resized by dragging on their borders | |
set-option -g mouse-resize-pane on | |
# clicking the mouse on a window name in the status line will select that window | |
set-option -g mouse-select-window on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment