diff options
author | nicm <nicm> | 2014-11-05 23:15:11 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-11-05 23:15:11 +0000 |
commit | d24c9d7d3efc3be0d4ba28616c3d5e3ef494258a (patch) | |
tree | 053e88e309da5e19395140592aa1eac69b09580b /options-table.c | |
parent | 10a9440055ccdda5788965bcb048207eab2a0548 (diff) | |
download | rtmux-d24c9d7d3efc3be0d4ba28616c3d5e3ef494258a.tar.gz rtmux-d24c9d7d3efc3be0d4ba28616c3d5e3ef494258a.tar.bz2 rtmux-d24c9d7d3efc3be0d4ba28616c3d5e3ef494258a.zip |
Do not put a space between status-left/status-right and the window list,
instead move the space into the defaults for the options (so status-left
now defaults to "[#S] ". From Balazs Kezes.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index d68a41c3..65b91226 100644 --- a/options-table.c +++ b/options-table.c @@ -390,7 +390,7 @@ const struct options_table_entry session_options_table[] = { { .name = "status-left", .type = OPTIONS_TABLE_STRING, - .default_str = "[#S]" + .default_str = "[#S] " }, { .name = "status-left-attr", @@ -431,7 +431,7 @@ const struct options_table_entry session_options_table[] = { { .name = "status-right", .type = OPTIONS_TABLE_STRING, - .default_str = "\"#{=22:pane_title}\" %H:%M %d-%b-%y" + .default_str = " \"#{=22:pane_title}\" %H:%M %d-%b-%y" }, { .name = "status-right-attr", |