summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-12-08 19:57:03 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-12-08 19:57:03 +0000
commit1f185235651107efe3d32e1d002ad38619f81bd5 (patch)
tree1209946ac11949e7b94b0d049c4f2d81bb4a3f65 /tmux.c
parente26a351865a0d969b3f40ca3c14be7ff8d7533ad (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 0ebeea28..662007a7 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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);