diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 14:32:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-20 14:32:09 +0000 |
commit | b292f71c49b4222b34684aee44029ca2d6aeb4dd (patch) | |
tree | 819115b78b93b6bd560de429d09caa36ee57199a /tmux.c | |
parent | e32e0d569294ca7162f197cc7c369cd57050b193 (diff) | |
download | rtmux-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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]"); |