1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-24 07:53:41 +03:00

ncurses: set ESCDELAY to 25 so that esc key lag is less noticeable

This commit is contained in:
Maxime Coste 2011-11-15 14:26:28 +00:00
parent a3b5c74512
commit d1868e8f07

View File

@ -159,6 +159,7 @@ void init_ncurses()
keypad(stdscr, true);
curs_set(2);
start_color();
ESCDELAY=25;
}
void deinit_ncurses()