diff options
author | nicm <nicm> | 2022-03-16 17:00:17 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-03-16 17:00:17 +0000 |
commit | e6e737ac0bf9a5be729b5c71f3a582355432d041 (patch) | |
tree | 4bce7dfaad1640bc11bd2051d78eac5fc8769f5f /options-table.c | |
parent | bfbe972225d10be7f6eaca22d88d90df4fae09c9 (diff) | |
download | rtmux-e6e737ac0bf9a5be729b5c71f3a582355432d041.tar.gz rtmux-e6e737ac0bf9a5be729b5c71f3a582355432d041.tar.bz2 rtmux-e6e737ac0bf9a5be729b5c71f3a582355432d041.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 d1bc3577..46b96ec4 100644 --- a/options-table.c +++ b/options-table.c @@ -882,6 +882,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, |