Skip to content
Snippets Groups Projects
Unverified Commit 3cd2547e authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Reduce ESC delay to 100ms

parent 8c661d4e
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,8 @@ func Init(theme *ColorTheme, black bool, mouse bool) {
C.raw() // stty dsusp undef
C.nonl()
C.keypad(C.stdscr, true)
C.set_escdelay(200)
C.timeout(100) // ESCDELAY 200ms + timeout 100ms
C.set_escdelay(100)
C.timeout(100) // ESCDELAY 100ms + timeout 100ms
_color = theme != nil
if _color {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment