Increase sendkeys timeout

This commit is contained in:
KillTheMule 2018-02-12 21:41:21 +01:00
parent 2106bada5b
commit 5aa8af7cdb

View File

@ -20,7 +20,7 @@ local function sendkeys(keys)
-- give neovim some time to process msgpack requests before possibly sending
-- more key presses - otherwise they all pile up in the queue and get
-- processed at once
local ntime = os.clock() + 0.01
local ntime = os.clock() + 0.1
repeat until os.clock() > ntime
end