diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-12-08 19:57:03 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-12-08 19:57:03 +0000 |
commit | 1f185235651107efe3d32e1d002ad38619f81bd5 (patch) | |
tree | 1209946ac11949e7b94b0d049c4f2d81bb4a3f65 /tmux.c | |
parent | e26a351865a0d969b3f40ca3c14be7ff8d7533ad (diff) | |
download | rtmux-1f185235651107efe3d32e1d002ad38619f81bd5.tar.gz rtmux-1f185235651107efe3d32e1d002ad38619f81bd5.tar.bz2 rtmux-1f185235651107efe3d32e1d002ad38619f81bd5.zip |
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.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |