diff options
author | nicm <nicm> | 2022-06-14 07:29:00 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-06-14 07:29:00 +0000 |
commit | 616bde08ac74d4be0ae06087aa3103df54833f86 (patch) | |
tree | 6379e3b7e204f65ce18f12db9f5369cb9a29d201 /options-table.c | |
parent | 42ddf02ffce2002ed5ded5e03e1a51516fc2d710 (diff) | |
download | rtmux-616bde08ac74d4be0ae06087aa3103df54833f86.tar.gz rtmux-616bde08ac74d4be0ae06087aa3103df54833f86.tar.bz2 rtmux-616bde08ac74d4be0ae06087aa3103df54833f86.zip |
kf* terminfo capabilities are poorly defined and rxvt uses them in a
different way from xterm, so add a feature flag for rxvt to make tmux
ignore the capabilities and instead rely on its builtin definitions.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 4e68af00..d1e65f15 100644 --- a/options-table.c +++ b/options-table.c @@ -363,7 +363,8 @@ const struct options_table_entry options_table[] = { .scope = OPTIONS_TABLE_SERVER, .flags = OPTIONS_TABLE_IS_ARRAY, .default_str = "xterm*:clipboard:ccolour:cstyle:focus:title," - "screen*:title", + "screen*:title," + "rxvt*:ignorefkeys", .separator = ",", .text = "List of terminal features, used if they cannot be " "automatically detected." |