diff options
author | nicm <nicm> | 2020-05-16 14:46:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 14:46:14 +0000 |
commit | 7dbe623156e7b0e32e10e5e6445b7b7e448cc3a2 (patch) | |
tree | 0ffb9f32bc1d6548d307731d2e05c2dfb728b667 /options-table.c | |
parent | 21a39c997b82b50b0307e836e4f11f9db6a84e55 (diff) | |
download | rtmux-7dbe623156e7b0e32e10e5e6445b7b7e448cc3a2.tar.gz rtmux-7dbe623156e7b0e32e10e5e6445b7b7e448cc3a2.tar.bz2 rtmux-7dbe623156e7b0e32e10e5e6445b7b7e448cc3a2.zip |
Instead of having a default set of terminals in terminal-overrides that
get XT added and using that as a marker for xterm(1)-like, assume that
if the terminfo(5) entry already has XT or the clear capability starts
with CSI then the terminal is VT100-like and it should be safe to send
DA requests. The DA responses trigger additional features being added.
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 23e5af6f..eaa7c2a7 100644 --- a/options-table.c +++ b/options-table.c @@ -261,7 +261,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SERVER, .flags = OPTIONS_TABLE_IS_ARRAY, - .default_str = "tmux*:XT,screen*:XT,xterm*:XT", + .default_str = "", .separator = "," }, |