aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorMicah Cowan <micah@micah.cowan.name>2010-12-07 20:23:21 +0000
committerMicah Cowan <micah@micah.cowan.name>2010-12-07 20:23:21 +0000
commit3ab25ac5b5bb40eb8842330abdada4e9a8d7f9a0 (patch)
treea02f16ede6a2c6b5808bd6efc9056185e513c41f /tmux.c
parent3a4f765a51fd7cf98d655dc5a63746a6121d0212 (diff)
downloadrtmux-3ab25ac5b5bb40eb8842330abdada4e9a8d7f9a0.tar.gz
rtmux-3ab25ac5b5bb40eb8842330abdada4e9a8d7f9a0.tar.bz2
rtmux-3ab25ac5b5bb40eb8842330abdada4e9a8d7f9a0.zip
In the built-in layouts, distribute the panes more evenly.
Set the default value of main-pane-width to 80, rather than 81.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index caeb9107..bd3e08bf 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.224 2010-12-06 22:52:21 nicm Exp $ */
+/* $Id: tmux.c,v 1.225 2010-12-07 20:23:21 micahcowan Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -399,7 +399,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);