diff options
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index e9ce27fd..ec68931d 100644 --- a/options-table.c +++ b/options-table.c @@ -50,6 +50,9 @@ const char *options_table_status_position_list[] = { const char *options_table_bell_action_list[] = { "none", "any", "current", "other", NULL }; +const char *options_table_pane_status_list[] = { + "off", "top", "bottom", NULL +}; /* Server options. */ const struct options_table_entry options_table[] = { @@ -692,6 +695,19 @@ const struct options_table_entry options_table[] = { .style = "pane-border-style" }, + { .name = "pane-border-format", + .type = OPTIONS_TABLE_STRING, + .scope = OPTIONS_TABLE_WINDOW, + .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] \"#{pane_title}\"" + }, + + { .name = "pane-border-status", + .type = OPTIONS_TABLE_CHOICE, + .scope = OPTIONS_TABLE_WINDOW, + .choices = options_table_pane_status_list, + .default_num = 0 + }, + { .name = "pane-border-style", .type = OPTIONS_TABLE_STYLE, .scope = OPTIONS_TABLE_WINDOW, |