diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:46:02 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:46:02 +0000 |
commit | ea1721bcb0e2241a8a521269ae757786f182bb3a (patch) | |
tree | 8b5bd2678e453b01293e091c831781fc60176903 /tmux.c | |
parent | 2486a36af3e7b738468a1acbe6c868314a26ab33 (diff) | |
download | rtmux-ea1721bcb0e2241a8a521269ae757786f182bb3a.tar.gz rtmux-ea1721bcb0e2241a8a521269ae757786f182bb3a.tar.bz2 rtmux-ea1721bcb0e2241a8a521269ae757786f182bb3a.zip |
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.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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); |