From e5bf63cb59981657e5140c0f542ec3c1f69dcd5a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 5 Nov 2011 09:06:31 +0000 Subject: Option to change status line (message) background when using vi keys and in command mode. From Ben Boeckel. --- options-table.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'options-table.c') diff --git a/options-table.c b/options-table.c index 2658f251..0129b0b9 100644 --- a/options-table.c +++ b/options-table.c @@ -194,6 +194,21 @@ const struct options_table_entry session_options_table[] = { .default_num = 3 }, + { .name = "message-command-attr", + .type = OPTIONS_TABLE_ATTRIBUTES, + .default_num = 0 + }, + + { .name = "message-command-bg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 0 + }, + + { .name = "message-command-fg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 3 + }, + { .name = "message-fg", .type = OPTIONS_TABLE_COLOUR, .default_num = 0 -- cgit