Remove all mouse-related options

pull/13/head
Bruno Sutic 2014-10-03 17:45:31 +02:00
parent c908b42f2b
commit 13f58a8870
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
3 changed files with 1 additions and 10 deletions

View File

@ -2,6 +2,7 @@
### master
- bugfix: prevent exiting tmux if 'reattach-to-user-namespace' is not installed
- remove all mouse-related options
### v1.1.0, 2014-08-30
- bugfix: determine the default shell from the $SHELL env var on OS X

View File

@ -44,11 +44,6 @@ Inspired by [vim-sensible](https://github.com/tpope/vim-sensible).
# upgrade $TERM
set -g default-terminal "screen-256color"
# enable mouse features for terminals that support it
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
# emacs key bindings in tmux command prompt (prefix + :) are better than
# vi keys, even for vim users
set -g status-keys emacs

View File

@ -96,11 +96,6 @@ main() {
tmux set-option -g default-terminal "screen-256color"
fi
# enable mouse features for terminals that support it
tmux set-option -g mouse-resize-pane on
tmux set-option -g mouse-select-pane on
tmux set-option -g mouse-select-window on
# emacs key bindings in tmux command prompt (prefix + :) are better than
# vi keys, even for vim users
tmux set-option -g status-keys emacs