=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.166 retrieving revision 1.167 diff -c -r1.166 -r1.167 *** src/usr.bin/tmux/options-table.c 2023/08/08 08:08:47 1.166 --- src/usr.bin/tmux/options-table.c 2023/08/15 07:01:47 1.167 *************** *** 1,4 **** ! /* $OpenBSD: options-table.c,v 1.166 2023/08/08 08:08:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: options-table.c,v 1.167 2023/08/15 07:01:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 336,341 **** --- 336,350 ---- .text = "Default style of menu." }, + { .name = "menu-selected-style", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_WINDOW, + .flags = OPTIONS_TABLE_IS_STYLE, + .default_str = "bg=yellow,fg=black", + .separator = ",", + .text = "Default style of selected menu item." + }, + { .name = "menu-border-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, *************** *** 962,969 **** { .name = "mode-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, - .default_str = "bg=yellow,fg=black", .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", .text = "Style of indicators and highlighting in modes." }, --- 971,978 ---- { .name = "mode-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, .flags = OPTIONS_TABLE_IS_STYLE, + .default_str = "bg=yellow,fg=black", .separator = ",", .text = "Style of indicators and highlighting in modes." },