From 52d3d514cefe8fcd65e4352e95ef03c37c7368bb Mon Sep 17 00:00:00 2001 From: ucs Date: Wed, 12 Aug 2020 11:55:15 +0200 Subject: [PATCH] Revert "Set Escape delay to 0" An ESCDELAY of 0 can break long escape sequences, such as the arrow keys, on slower terminals. This reverts commit 2599564e6480384b0872174f685c0128276062ca. --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index a6220bbf..1f0386ba 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1714,7 +1714,7 @@ static bool initcurses(void *oldmask) } settimeout(); /* One second */ - set_escdelay(0); + set_escdelay(25); return TRUE; }