diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-11-05 23:15:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-11-05 23:15:12 +0000 |
commit | a00b3bf0b9f6fdabf8d3027638ffd26cf87746f8 (patch) | |
tree | ac7e2ccccecc0991210e58c0bb94ffcf60672424 /usr.bin/tmux/options-table.c | |
parent | 626bd68561948953b6314b6746c7cb236018aa56 (diff) |
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 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index ca098c08525..3aeb498b9ee 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.50 2014/04/17 12:57:28 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.51 2014/11/05 23:15:11 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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", |