From ea1721bcb0e2241a8a521269ae757786f182bb3a Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 11 Oct 2009 23:46:02 +0000 Subject: Sync OpenBSD patchset 373: New option, mouse-select-pane. If on, the mouse may be used to select the current pane. Suggested by sthen@ and also by someone else ages ago who I have forgotten. --- tmux.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 7b65b6b3..84a0eff6 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.177 2009-10-11 23:30:28 tcunha Exp $ */ +/* $Id: tmux.c,v 1.178 2009-10-11 23:46:02 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -390,6 +390,7 @@ main(int argc, char **argv) options_set_number(so, "message-attr", 0); options_set_number(so, "message-bg", 3); options_set_number(so, "message-fg", 0); + options_set_number(so, "mouse-select-pane", 0); options_set_number(so, "repeat-time", 500); options_set_number(so, "set-remain-on-exit", 0); options_set_number(so, "set-titles", 0); -- cgit