diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-14 00:44:03 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-28 19:19:51 +0200 |
commit | acfd2a2a29ae852ecc965ca888eb5049400bf39d (patch) | |
tree | 6c4dbe24eadf5dbd019e3483bb8057156a93112c /test/functional/api/vim_spec.lua | |
parent | 3ea10077534cb1dcb1597ffcf85e601fa0c0e27b (diff) | |
download | rneovim-acfd2a2a29ae852ecc965ca888eb5049400bf39d.tar.gz rneovim-acfd2a2a29ae852ecc965ca888eb5049400bf39d.tar.bz2 rneovim-acfd2a2a29ae852ecc965ca888eb5049400bf39d.zip |
input.c: Process only safe events before blocking.
Introduce multiqueue_process_priority() to process only events at or
above a certain priority.
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index d06dd4c487..7c79d8832f 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -9,7 +9,6 @@ local funcs = helpers.funcs local request = helpers.request local meth_pcall = helpers.meth_pcall local command = helpers.command -local wait = helpers.wait describe('api', function() before_each(clear) @@ -222,13 +221,6 @@ describe('api', function() end) end) - local function appendfile(fname, text) - local file = io.open(fname, 'a') - file:write(text) - file:flush() - file:close() - end - describe('nvim_get_mode', function() it("during normal-mode `g` returns blocking=true", function() nvim("input", "o") -- add a line |