diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-08-12 00:01:26 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-08-12 00:01:26 +0100 |
commit | 44ada9cd67e46676eaf0f9a19a681ddc1f898682 (patch) | |
tree | a56e87ba5007caaedbe33d5a8841bad715ba6582 /options-table.c | |
parent | e9d49161e0510b8b2eccbe33195789937d25796f (diff) | |
parent | 7eea3d7ab850bb8fbeeccbb4b0fe84b9274965af (diff) | |
download | rtmux-44ada9cd67e46676eaf0f9a19a681ddc1f898682.tar.gz rtmux-44ada9cd67e46676eaf0f9a19a681ddc1f898682.tar.bz2 rtmux-44ada9cd67e46676eaf0f9a19a681ddc1f898682.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index 4460c951..1e90a7ba 100644 --- a/options-table.c +++ b/options-table.c @@ -184,6 +184,7 @@ const struct options_name_map options_other_names[] = { { "display-panes-color", "display-panes-colour" }, { "display-panes-active-color", "display-panes-active-colour" }, { "clock-mode-color", "clock-mode-colour" }, + { "pane-colors", "pane-colours" }, { NULL, NULL } }; @@ -972,6 +973,14 @@ const struct options_table_entry options_table[] = { .text = "Style of the pane status lines." }, + { .name = "pane-colours", + .type = OPTIONS_TABLE_COLOUR, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, + .default_str = "", + .flags = OPTIONS_TABLE_IS_ARRAY, + .text = "The default colour palette for colours zero to 255." + }, + { .name = "remain-on-exit", .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, |