aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-08-16 19:20:37 +0000
committerTiago Cunha <tcunha@gmx.com>2009-08-16 19:20:37 +0000
commit9541471f876886b622daf6fa5c66f3cbe779c691 (patch)
treeb9060488313b522eac677be0e41b7759b20af6c0
parentc1fee8793d624a99b48a6e17399089dbec793f8f (diff)
downloadrtmux-9541471f876886b622daf6fa5c66f3cbe779c691.tar.gz
rtmux-9541471f876886b622daf6fa5c66f3cbe779c691.tar.bz2
rtmux-9541471f876886b622daf6fa5c66f3cbe779c691.zip
Sync OpenBSD patchset 258:
Disable mode-mouse (mouse in copy/choice mode) by default as it isn't very useful at the moment and causes confusion.
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 9a35e7f6..33390b34 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.162 2009-08-16 19:16:27 tcunha Exp $ */
+/* $Id: tmux.c,v 1.163 2009-08-16 19:20:37 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -408,7 +408,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)