diff options
author | nicm <nicm> | 2022-09-09 11:02:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-09-09 11:02:23 +0000 |
commit | f03c3ca6c36cd52ae5ec4ae8cd4fa137cf79aaf3 (patch) | |
tree | 061aac267ccd51ff1ed628279bd672ba4e105dcc /options-table.c | |
parent | 68dc9af9ac1a8ea332c82fd510b01c46602fa03a (diff) | |
download | rtmux-f03c3ca6c36cd52ae5ec4ae8cd4fa137cf79aaf3.tar.gz rtmux-f03c3ca6c36cd52ae5ec4ae8cd4fa137cf79aaf3.tar.bz2 rtmux-f03c3ca6c36cd52ae5ec4ae8cd4fa137cf79aaf3.zip |
Add message-line option to control where message and prompt go, from
Varun Kumar E in GitHub issue 3324.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 377835bb..6fc5a96f 100644 --- a/options-table.c +++ b/options-table.c @@ -42,6 +42,9 @@ static const char *options_table_clock_mode_style_list[] = { static const char *options_table_status_list[] = { "off", "on", "2", "3", "4", "5", NULL }; +static const char *options_table_message_line_list[] = { + "0", "1", "2", "3", "4", NULL +}; static const char *options_table_status_keys_list[] = { "emacs", "vi", NULL }; @@ -542,13 +545,21 @@ const struct options_table_entry options_table[] = { "'mode-keys' is set to 'vi'." }, + { .name = "message-line", + .type = OPTIONS_TABLE_CHOICE, + .scope = OPTIONS_TABLE_SESSION, + .choices = options_table_message_line_list, + .default_num = 0, + .text = "Position (line) of messages and the command prompt." + }, + { .name = "message-style", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SESSION, .default_str = "bg=yellow,fg=black", .flags = OPTIONS_TABLE_IS_STYLE, .separator = ",", - .text = "Style of the command prompt." + .text = "Style of messages and the command prompt." }, { .name = "mouse", |