Add a status-justify option to allow the window list in the status line to be

positioned at the left, centre, or right.
This commit is contained in:
Nicholas Marriott
2009-07-20 14:32:09 +00:00
parent e32e0d5692
commit b292f71c49
4 changed files with 27 additions and 1 deletions

1
tmux.c
View File

@ -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]");