summaryrefslogtreecommitdiff
path: root/src/tui/ncurses.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-11-19 23:03:27 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-11-19 23:03:27 +0900
commit3cd2547e91fb3fee1b331c5fa97244d6a20e9d0b (patch)
treed2f5799896574c4cb2afbdb0de75cabb36648439 /src/tui/ncurses.go
parent8c661d4e8c8a4b643155aa46481ac92f6ebf75b9 (diff)
downloadfzf-3cd2547e91fb3fee1b331c5fa97244d6a20e9d0b.tar.gz
Reduce ESC delay to 100ms
Diffstat (limited to 'src/tui/ncurses.go')
-rw-r--r--src/tui/ncurses.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tui/ncurses.go b/src/tui/ncurses.go
index 205e643b..fc15b807 100644
--- a/src/tui/ncurses.go
+++ b/src/tui/ncurses.go
@@ -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 {