diff options
author | nicm <nicm> | 2022-03-16 17:00:17 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 14:19:51 +0100 |
commit | fe44b105e4a2d1d7baa12b37d0b84d8c6be9addc (patch) | |
tree | aba35e99e0898df782b9e181ab42c57125c3d313 /options-table.c | |
parent | ad7113e0dbf2e5f5b6b33fd34824c5cf16e9053c (diff) | |
download | rtmux-fe44b105e4a2d1d7baa12b37d0b84d8c6be9addc.tar.gz rtmux-fe44b105e4a2d1d7baa12b37d0b84d8c6be9addc.tar.bz2 rtmux-fe44b105e4a2d1d7baa12b37d0b84d8c6be9addc.zip |
Add an option to set the character used for unused areas of the
terminal, GitHub issue 3110.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index 31b0e372..3aa72e78 100644 --- a/options-table.c +++ b/options-table.c @@ -881,6 +881,13 @@ const struct options_table_entry options_table[] = { .text = "Style of the marked line in copy mode." }, + { .name = "fill-character", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_WINDOW, + .default_str = "", + .text = "Character used to fill unused parts of window." + }, + { .name = "main-pane-height", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_WINDOW, |