Merge pull request #696 from ucs1/revert-escdelay

Fix arrow keys not working on mintty
This commit is contained in:
Jana 2020-08-12 19:02:57 +05:30 committed by GitHub
commit 0c93b170c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ static bool initcurses(void *oldmask)
}
settimeout(); /* One second */
set_escdelay(0);
set_escdelay(25);
return TRUE;
}