In the built-in layouts, distribute the panes more evenly. Set the

default value of main-pane-width to 80, rather than 81. By Micah Cowan.
This commit is contained in:
Nicholas Marriott
2010-12-08 19:57:03 +00:00
parent e26a351865
commit 1f18523565
2 changed files with 43 additions and 44 deletions

2
tmux.c
View File

@ -396,7 +396,7 @@ main(int argc, char **argv)
options_set_number(wo, "force-height", 0);
options_set_number(wo, "force-width", 0);
options_set_number(wo, "main-pane-height", 24);
options_set_number(wo, "main-pane-width", 81);
options_set_number(wo, "main-pane-width", 80);
options_set_number(wo, "mode-attr", 0);
options_set_number(wo, "mode-bg", 3);
options_set_number(wo, "mode-fg", 0);