=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.148 retrieving revision 1.149 diff -c -r1.148 -r1.149 *** src/usr.bin/tmux/options-table.c 2021/08/06 09:19:02 1.148 --- src/usr.bin/tmux/options-table.c 2021/08/11 20:49:55 1.149 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.148 2021/08/06 09:19:02 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.149 2021/08/11 20:49:55 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 185,190 **** --- 185,191 ---- { "display-panes-color", "display-panes-colour" }, { "display-panes-active-color", "display-panes-active-colour" }, { "clock-mode-color", "clock-mode-colour" }, + { "pane-colors", "pane-colours" }, { NULL, NULL } }; *************** *** 971,976 **** --- 972,985 ---- .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", .text = "Style of the pane status lines." + }, + + { .name = "pane-colours", + .type = OPTIONS_TABLE_COLOUR, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, + .default_str = "", + .flags = OPTIONS_TABLE_IS_ARRAY, + .text = "The default colour palette for colours zero to 255." }, { .name = "remain-on-exit",