diff options
author | nicm <nicm> | 2021-12-13 09:42:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-12-13 09:42:20 +0000 |
commit | c6149adf55a1ab108a9336ba15a82bd11a809cb3 (patch) | |
tree | 0bbc81f9a418a9f6b0cffc88d5977a226921dd98 /options-table.c | |
parent | 9c1633a8659c4045b8303eb99d5f89b4f0dcb784 (diff) | |
download | rtmux-c6149adf55a1ab108a9336ba15a82bd11a809cb3.tar.gz rtmux-c6149adf55a1ab108a9336ba15a82bd11a809cb3.tar.bz2 rtmux-c6149adf55a1ab108a9336ba15a82bd11a809cb3.zip |
Make pane-border-format a pane option, GitHub issue 2999.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index bad22bfb..cfb8162e 100644 --- a/options-table.c +++ b/options-table.c @@ -965,7 +965,7 @@ const struct options_table_entry options_table[] = { { .name = "pane-border-format", .type = OPTIONS_TABLE_STRING, - .scope = OPTIONS_TABLE_WINDOW, + .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE, .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] " "\"#{pane_title}\"", .text = "Format of text in the pane status lines." |