aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-12-22 15:23:59 +0000
committerTiago Cunha <tcunha@gmx.com>2010-12-22 15:23:59 +0000
commitd1bdc9a1614166aa8bee5163378d299a35c75a76 (patch)
tree6896b85327a90e0b5aabffad98ccf4377371fdfe /tmux.c
parentcd92f44686b165ea77d13b1b93b2ff80eadfe53f (diff)
downloadrtmux-d1bdc9a1614166aa8bee5163378d299a35c75a76.tar.gz
rtmux-d1bdc9a1614166aa8bee5163378d299a35c75a76.tar.bz2
rtmux-d1bdc9a1614166aa8bee5163378d299a35c75a76.zip
Sync OpenBSD patchset 799:
Add other-pane-height and other-pane-width options, allowing the width or height of the smaller panes in the main-horizontal and main-vertical layouts to be set. Mostly from David Goodlad.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 1d83558c..c8264e49 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.226 2010-12-10 21:19:13 nicm Exp $ */
+/* $Id: tmux.c,v 1.227 2010-12-22 15:23:59 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -410,6 +410,8 @@ main(int argc, char **argv)
options_set_number(wo, "monitor-activity", 0);
options_set_string(wo, "monitor-content", "%s", "");
options_set_number(wo, "monitor-silence", 0);
+ options_set_number(wo, "other-pane-height", 0);
+ options_set_number(wo, "other-pane-width", 0);
options_set_number(wo, "window-status-attr", 0);
options_set_number(wo, "window-status-bg", 8);
options_set_number(wo, "window-status-current-attr", 0);