aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-05-18 22:17:24 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-05-18 22:17:24 +0000
commit72e464fa049f4e79d8d4a8ad2e69db3a6f68feb4 (patch)
treee269ee1a3362aa387052b6736e0b5e666b1feb92 /tmux.c
parentc21ffbc7729b91d29db2fe025e130a4465d788b9 (diff)
downloadrtmux-72e464fa049f4e79d8d4a8ad2e69db3a6f68feb4.tar.gz
rtmux-72e464fa049f4e79d8d4a8ad2e69db3a6f68feb4.tar.bz2
rtmux-72e464fa049f4e79d8d4a8ad2e69db3a6f68feb4.zip
main-horizontal layout and main-pane-height option to match vertical.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index d940f1fb..d96eedf0 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.118 2009-05-18 21:55:53 nicm Exp $ */
+/* $Id: tmux.c,v 1.119 2009-05-18 22:17:24 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -323,6 +323,7 @@ main(int argc, char **argv)
options_set_number(
&global_window_options, "mode-attr", GRID_ATTR_REVERSE);
options_set_number(&global_window_options, "main-pane-width", 81);
+ options_set_number(&global_window_options, "main-pane-height", 24);
options_set_number(&global_window_options, "mode-bg", 3);
options_set_number(&global_window_options, "mode-fg", 0);
options_set_number(&global_window_options, "mode-keys", MODEKEY_EMACS);