1
0
mirror of https://github.com/tmux/tmux.git synced 2025-03-31 12:38:48 +00:00

Remove an unnecessary comma.

This commit is contained in:
Nicholas Marriott 2020-04-29 08:59:20 +01:00
parent 3d76748161
commit 7c52d702e4

View File

@ -717,7 +717,7 @@ const struct options_table_entry options_table[] = {
{ .name = "pane-active-border-style",
.type = OPTIONS_TABLE_STRING,
.scope = OPTIONS_TABLE_WINDOW,
.default_str = "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,,fg=green}}",
.default_str = "#{?pane_in_mode,fg=yellow,#{?synchronize-panes,fg=red,fg=green}}",
.flags = OPTIONS_TABLE_IS_STYLE,
.separator = ","
},