diff options
author | nicm <nicm> | 2017-01-24 20:05:15 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-24 20:05:15 +0000 |
commit | b77dd75b5717d3b95a97c7b60c9e054338d7d85e (patch) | |
tree | 63228719e87f44c569c7f8ba61838f87fc5517f5 /options-table.c | |
parent | 16e43d6a42ea15893e77abb4efece5a965321522 (diff) | |
download | rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.tar.gz rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.tar.bz2 rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.zip |
Convert terminal-overrides to an array option.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index 48e2f2c8..2b506b8c 100644 --- a/options-table.c +++ b/options-table.c @@ -122,11 +122,12 @@ const struct options_table_entry options_table[] = { }, { .name = "terminal-overrides", - .type = OPTIONS_TABLE_STRING, + .type = OPTIONS_TABLE_ARRAY, .scope = OPTIONS_TABLE_SERVER, .default_str = "xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007" - ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT" + ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT", + .separator = "," }, { .name = "assume-paste-time", |