summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-12-19 18:35:08 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-12-19 18:35:08 +0000
commitc198664d151f51575ebf7f445f5f26d61e1b67a2 (patch)
tree01bb63b6efb5a8d30c8a165f8ec279e927c12fda /tmux.c
parent8715247a43c05fe68d6ab2062b0d23c8777c7671 (diff)
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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 662007a7..2618ce31 100644
--- a/tmux.c
+++ b/tmux.c
@@ -404,6 +404,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);