aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-30 20:32:05 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-30 20:32:05 +0000
commitec3dba01b2cebd4181f9c66683518c3c7b2a5079 (patch)
treee6a0cd99ea700626515931db337ccade2661b2c4 /tmux.c
parent8ce1f0b0477c456534ff4e3204afbfe18a69d905 (diff)
downloadrtmux-ec3dba01b2cebd4181f9c66683518c3c7b2a5079.tar.gz
rtmux-ec3dba01b2cebd4181f9c66683518c3c7b2a5079.tar.bz2
rtmux-ec3dba01b2cebd4181f9c66683518c3c7b2a5079.zip
Sync OpenBSD patchset 198:
Add a mode-mouse option to prevent tmux taking over the mouse in choice or copy modes.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index b20e36b4..b867a6fd 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.152 2009-07-30 20:21:55 tcunha Exp $ */
+/* $Id: tmux.c,v 1.153 2009-07-30 20:32:05 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -387,12 +387,13 @@ main(int argc, char **argv)
options_set_number(&global_w_options, "clock-mode-style", 1);
options_set_number(&global_w_options, "force-height", 0);
options_set_number(&global_w_options, "force-width", 0);
- options_set_number(&global_w_options, "mode-attr", GRID_ATTR_REVERSE);
options_set_number(&global_w_options, "main-pane-width", 81);
options_set_number(&global_w_options, "main-pane-height", 24);
+ options_set_number(&global_w_options, "mode-attr", GRID_ATTR_REVERSE);
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, "monitor-activity", 0);
options_set_string(&global_w_options, "monitor-content", "%s", "");
if (flags & IDENTIFY_UTF8)