diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-29 05:36:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-29 05:36:53 +0000 |
commit | d3c461097b71fa548a8b91e114d4046bdc337b4f (patch) | |
tree | 54b8f7bb9ffed70e68d8659d4f1c3e7f8b60f0d6 | |
parent | f596be99505a0191cac9f314fb1b71528c5080b4 (diff) | |
download | rtmux-d3c461097b71fa548a8b91e114d4046bdc337b4f.tar.gz rtmux-d3c461097b71fa548a8b91e114d4046bdc337b4f.tar.bz2 rtmux-d3c461097b71fa548a8b91e114d4046bdc337b4f.zip |
Taking account of the "s, 22 not 24 is the maximum length of #T in status-right
to prevent the date being cut off.
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -362,7 +362,7 @@ main(int argc, char **argv) options_set_number(&global_s_options, "status-right-length", 40); options_set_string(&global_s_options, "status-left", "[#S]"); options_set_string( - &global_s_options, "status-right", "\"#24T\" %%H:%%M %%d-%%b-%%y"); + &global_s_options, "status-right", "\"#22T\" %%H:%%M %%d-%%b-%%y"); if (flags & IDENTIFY_UTF8) options_set_number(&global_s_options, "status-utf8", 1); else |