Skip to content

Instantly share code, notes, and snippets.

@dangerous
Created March 5, 2013 04:01
Show Gist options
  • Save dangerous/5087905 to your computer and use it in GitHub Desktop.
Save dangerous/5087905 to your computer and use it in GitHub Desktop.
TMUX mouse options
# 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