diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 19:20:37 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-16 19:20:37 +0000 |
commit | 9541471f876886b622daf6fa5c66f3cbe779c691 (patch) | |
tree | b9060488313b522eac677be0e41b7759b20af6c0 | |
parent | c1fee8793d624a99b48a6e17399089dbec793f8f (diff) | |
download | rtmux-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |