diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-08-13 21:56:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-08-13 21:56:14 +0000 |
commit | 375be90fd1cd137f84496c8919f3cceff839b33b (patch) | |
tree | 3a836e2a5decd2b68dca475c1d3221183e971ff2 /tmux.c | |
parent | 3ad4de6c8cbdc767c6ac40b99764cc7bd8db066a (diff) | |
download | rtmux-375be90fd1cd137f84496c8919f3cceff839b33b.tar.gz rtmux-375be90fd1cd137f84496c8919f3cceff839b33b.tar.bz2 rtmux-375be90fd1cd137f84496c8919f3cceff839b33b.zip |
Disable mode-mouse (mouse in copy/choice mode) by default as it isn't very
useful at the moment and causes confusion.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -399,7 +399,7 @@ main(int argc, char **argv) options_set_number(&global_w_options, "mode-bg", 3); options_set_number(&global_w_options, "mode-fg", 0); options_set_number(&global_w_options, "mode-keys", MODEKEY_EMACS); - options_set_number(&global_w_options, "mode-mouse", 1); + options_set_number(&global_w_options, "mode-mouse", 0); options_set_number(&global_w_options, "monitor-activity", 0); options_set_string(&global_w_options, "monitor-content", "%s", ""); if (flags & IDENTIFY_UTF8) |