diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-05-22 21:53:43 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-05-24 22:11:37 +0200 |
commit | 5cc87d4dabd02167117be7a978b5c8faaa975419 (patch) | |
tree | c8d54327f76fbc7422d3fec0a7e91f85c8da41ca /test/functional/ui/screen.lua | |
parent | 61e8adb25e6f37c3c9df0dd8f4fea5e23b62bacd (diff) | |
download | rneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.tar.gz rneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.tar.bz2 rneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.zip |
cmdline: Redraw the cmdline after processing events
vim-patch:7.4.1603
TODO(bfredl): if we allow events in HITRETURN and ASKMORE states,
we need to add the necessary redraws as well.
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 6372cbe081..99b85caf10 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -290,6 +290,10 @@ If everything else fails, use Screen:redraw_debug to help investigate what is end end +function Screen:sleep(ms) + pcall(function() self:wait(function() return "error" end, ms) end) +end + function Screen:_redraw(updates) for _, update in ipairs(updates) do -- print('--') @@ -501,7 +505,7 @@ end function Screen:snapshot_util(attrs, ignore) -- util to generate screen test - pcall(function() self:wait(function() return "error" end, 250) end) + self:sleep(250) self:print_snapshot(attrs, ignore) end |