diff options
author | nicm <nicm> | 2015-02-06 15:09:34 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-02-06 15:09:34 +0000 |
commit | 83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b (patch) | |
tree | fcdbb4001aa49dc0a7bdeec4e00e5486b8e4dcef /options-table.c | |
parent | 90bf7026f6bb83e0781ff2fc71c32ce973edce59 (diff) | |
download | rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.tar.gz rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.tar.bz2 rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.zip |
Move pane border options to window options rather than session, from Marc Finet.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/options-table.c b/options-table.c index 7d8b2568..fb231f7d 100644 --- a/options-table.c +++ b/options-table.c @@ -275,40 +275,6 @@ const struct options_table_entry session_options_table[] = { .default_num = 0 }, - { .name = "pane-active-border-bg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 8, - .style = "pane-active-border-style" - }, - - { .name = "pane-active-border-fg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 2, - .style = "pane-active-border-style" - }, - - { .name = "pane-active-border-style", - .type = OPTIONS_TABLE_STYLE, - .default_str = "fg=green" - }, - - { .name = "pane-border-bg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 8, - .style = "pane-border-style" - }, - - { .name = "pane-border-fg", - .type = OPTIONS_TABLE_COLOUR, - .default_num = 8, - .style = "pane-border-style" - }, - - { .name = "pane-border-style", - .type = OPTIONS_TABLE_STYLE, - .default_str = "default" - }, - { .name = "prefix", .type = OPTIONS_TABLE_KEY, .default_num = '\002', @@ -646,6 +612,23 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, + { .name = "pane-active-border-bg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 8, + .style = "pane-active-border-style" + }, + + { .name = "pane-active-border-fg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 2, + .style = "pane-active-border-style" + }, + + { .name = "pane-active-border-style", + .type = OPTIONS_TABLE_STYLE, + .default_str = "fg=green" + }, + { .name = "pane-base-index", .type = OPTIONS_TABLE_NUMBER, .minimum = 0, @@ -653,6 +636,23 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, + { .name = "pane-border-bg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 8, + .style = "pane-border-style" + }, + + { .name = "pane-border-fg", + .type = OPTIONS_TABLE_COLOUR, + .default_num = 8, + .style = "pane-border-style" + }, + + { .name = "pane-border-style", + .type = OPTIONS_TABLE_STYLE, + .default_str = "default" + }, + { .name = "remain-on-exit", .type = OPTIONS_TABLE_FLAG, .default_num = 0 |