diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-09 13:07:04 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-09 13:07:04 +0000 |
commit | 9ac062acef348331e768db82554a214860b348af (patch) | |
tree | 7fda79848b62f7fa8ae75ecb653a3cdc4de1f89d /tmux.c | |
parent | 765a38e5348a5336af7299729ad933e4b9cf5a4d (diff) | |
download | rtmux-9ac062acef348331e768db82554a214860b348af.tar.gz rtmux-9ac062acef348331e768db82554a214860b348af.tar.bz2 rtmux-9ac062acef348331e768db82554a214860b348af.zip |
Sync OpenBSD patchset 367:
Add a simple synchronize-panes window option: when set, all input to any pane
that is part of the window is also sent to all other panes in the same
window. Suggested by several, most recently Tomasz Pajor.
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.175 2009-09-23 15:18:56 tcunha Exp $ */ +/* $Id: tmux.c,v 1.176 2009-10-09 13:07:04 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -450,6 +450,7 @@ main(int argc, char **argv) options_set_number(wo, "window-status-fg", 8); options_set_number(wo, "xterm-keys", 0); options_set_number(wo, "remain-on-exit", 0); + options_set_number(wo, "synchronize-panes", 0); if (flags & IDENTIFY_UTF8) { options_set_number(so, "status-utf8", 1); |