diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-12-19 18:35:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-12-19 18:35:08 +0000 |
commit | c198664d151f51575ebf7f445f5f26d61e1b67a2 (patch) | |
tree | 01bb63b6efb5a8d30c8a165f8ec279e927c12fda /tmux.c | |
parent | 8715247a43c05fe68d6ab2062b0d23c8777c7671 (diff) | |
download | rtmux-c198664d151f51575ebf7f445f5f26d61e1b67a2.tar.gz rtmux-c198664d151f51575ebf7f445f5f26d61e1b67a2.tar.bz2 rtmux-c198664d151f51575ebf7f445f5f26d61e1b67a2.zip |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |