From d1868e8f07575454bdd3f87fc2832fcccd2832bb Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 15 Nov 2011 14:26:28 +0000 Subject: [PATCH] ncurses: set ESCDELAY to 25 so that esc key lag is less noticeable --- src/main.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cc b/src/main.cc index f513bb17..609efed0 100644 --- a/src/main.cc +++ b/src/main.cc @@ -159,6 +159,7 @@ void init_ncurses() keypad(stdscr, true); curs_set(2); start_color(); + ESCDELAY=25; } void deinit_ncurses()