aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-20 16:01:07 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-20 16:01:07 +0000
commit9a07e8f3724646762708eab10e102a6a9a8c5583 (patch)
treeb28520f17af9760ed4c17472218d5034d23821b9 /tmux.c
parente8957009c7766fae83e892c3606b4d163db35b7e (diff)
downloadrtmux-9a07e8f3724646762708eab10e102a6a9a8c5583.tar.gz
rtmux-9a07e8f3724646762708eab10e102a6a9a8c5583.tar.bz2
rtmux-9a07e8f3724646762708eab10e102a6a9a8c5583.zip
Sync OpenBSD patchset 147:
Add a status-justify option to allow the window list in the status line to be positioned at the left, centre, or right.
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 66b87516..387f1775 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.145 2009-07-20 15:57:05 tcunha Exp $ */
+/* $Id: tmux.c,v 1.146 2009-07-20 16:01:07 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -312,6 +312,7 @@ main(int argc, char **argv)
options_set_number(&global_s_options, "status-fg", 0);
options_set_number(&global_s_options, "status-interval", 15);
options_set_number(&global_s_options, "status-keys", MODEKEY_EMACS);
+ options_set_number(&global_s_options, "status-justify", 0);
options_set_number(&global_s_options, "status-left-length", 10);
options_set_number(&global_s_options, "status-right-length", 40);
options_set_string(&global_s_options, "status-left", "[#S]");