aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-20 14:32:09 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-20 14:32:09 +0000
commitb292f71c49b4222b34684aee44029ca2d6aeb4dd (patch)
tree819115b78b93b6bd560de429d09caa36ee57199a /tmux.c
parente32e0d569294ca7162f197cc7c369cd57050b193 (diff)
downloadrtmux-b292f71c49b4222b34684aee44029ca2d6aeb4dd.tar.gz
rtmux-b292f71c49b4222b34684aee44029ca2d6aeb4dd.tar.bz2
rtmux-b292f71c49b4222b34684aee44029ca2d6aeb4dd.zip
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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 915bb432..d8499202 100644
--- a/tmux.c
+++ b/tmux.c
@@ -303,6 +303,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]");