From 6d92b99dbcb6a616c88df1e6abbae0a96296e7a4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 15 May 2020 16:15:24 +0100 Subject: Add a terminal feature for enable/disable extended keys (supported by xterm and mintty) and add an option to make tmux send it. --- options-table.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'options-table.c') diff --git a/options-table.c b/options-table.c index 7e379382..1341ed2e 100644 --- a/options-table.c +++ b/options-table.c @@ -251,6 +251,14 @@ const struct options_table_entry options_table[] = { "clients." }, + { .name = "extended-keys", + .type = OPTIONS_TABLE_FLAG, + .scope = OPTIONS_TABLE_SERVER, + .default_num = 0, + .text = "Whether to request extended key sequences from terminals " + "that support it." + }, + { .name = "focus-events", .type = OPTIONS_TABLE_FLAG, .scope = OPTIONS_TABLE_SERVER, -- cgit