diff options
| author | 2010-12-08 19:57:03 +0000 | |
|---|---|---|
| committer | 2010-12-08 19:57:03 +0000 | |
| commit | b2c857acec2899c10c4500cae10ee6d12626bfe5 (patch) | |
| tree | 9fbefd4fb9864c835a6ee4dc6bd5da60e19ded67 /usr.bin/tmux/tmux.c | |
| parent | explain that IPQoS arguments are separated by whitespace; iirc requested (diff) | |
| download | wireguard-openbsd-b2c857acec2899c10c4500cae10ee6d12626bfe5.tar.xz wireguard-openbsd-b2c857acec2899c10c4500cae10ee6d12626bfe5.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 'usr.bin/tmux/tmux.c')
| -rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index ea5ff05032e..d07308a3ba3 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.95 2010/12/06 22:51:02 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.96 2010/12/08 19:57:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); |
