From 5ee4d991b6a325848083017665ac3d3ace2d1fa1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 15 May 2020 10:31:54 +0100 Subject: xterm-keys has been on by default for 5 years and all other modern terminals use these key sequences by default. Merge the code into the main tty and input tree processing (convering the latter to use a tree rather than a table at the same time) and make the option a no-op. --- server.c | 1 + 1 file changed, 1 insertion(+) (limited to 'server.c') diff --git a/server.c b/server.c index c451989c..5613ddea 100644 --- a/server.c +++ b/server.c @@ -198,6 +198,7 @@ server_start(struct tmuxproc *client, int flags, struct event_base *base, "tty ps", NULL) != 0) fatal("pledge failed"); + input_key_build(); RB_INIT(&windows); RB_INIT(&all_window_panes); TAILQ_INIT(&clients); -- cgit