Skip to content

Instantly share code, notes, and snippets.

@lighta971
Last active August 29, 2015 14:06
Show Gist options
  • Save lighta971/43511c96a6864eb04cd8 to your computer and use it in GitHub Desktop.
Save lighta971/43511c96a6864eb04cd8 to your computer and use it in GitHub Desktop.
Tmux - Workaround to select text when mouse mode is ON
#http://awhan.wordpress.com/2012/04/18/tmux-copy-paste-with-mouse/#comment-465
# Mouse mode
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
# Toggle mouse on
bind m \
set -g mode-mouse on \;\
set -g mouse-resize-pane on \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display ‘Mouse: ON’
# Toggle mouse off
bind M \
set -g mode-mouse off \;\
set -g mouse-resize-pane off \;\
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display ‘Mouse: OFF’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment