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.
This commit is contained in:
Nicholas Marriott
2010-12-19 18:35:08 +00:00
parent 8715247a43
commit c198664d15
4 changed files with 47 additions and 4 deletions

2
tmux.c
View File

@ -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);