From 2599564e6480384b0872174f685c0128276062ca Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Fri, 29 May 2020 08:51:17 +0530 Subject: [PATCH] Set Escape delay to 0 --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 4ffab55d..f9b32ee1 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1546,7 +1546,7 @@ static bool initcurses(void *oldmask) } settimeout(); /* One second */ - set_escdelay(25); + set_escdelay(0); return TRUE; }