diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-08 16:50:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-08 16:50:45 +0200 |
commit | 83632022f84e4addf9518bf9913cc58b2ae41820 (patch) | |
tree | d09e86ecd2f61d8e93175bceefa1468df0c586e3 /test/functional/helpers.lua | |
parent | fa90f6cdaae800d9bfbc4f28ec04fb7456751dbe (diff) | |
parent | c705e3fb0b70887aaebe4973ce02acc6be45eb97 (diff) | |
download | rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.tar.gz rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.tar.bz2 rneovim-83632022f84e4addf9518bf9913cc58b2ae41820.zip |
Merge pull request #10959 from bfredl/resizequeue
fix crash on :!tmux split, redraw after resize in pager
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index d50ecd2e6f..131ce7ed0b 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -689,6 +689,7 @@ end module.funcs = module.create_callindex(module.call) module.meths = module.create_callindex(module.nvim) +module.async_meths = module.create_callindex(module.nvim_async) module.uimeths = module.create_callindex(ui) module.bufmeths = module.create_callindex(module.buffer) module.winmeths = module.create_callindex(module.window) |