From: ucs Date: Wed, 12 Aug 2020 09:55:15 +0000 (+0200) Subject: Revert "Set Escape delay to 0" X-Git-Tag: v3.4~18^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=52d3d514cefe8fcd65e4352e95ef03c37c7368bb;p=nnn.git 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. --- 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; }