diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2015-09-16 22:00:04 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2015-09-16 22:00:04 +0200 |
commit | c416e6874e7382721e52720983cd8c283dd738f1 (patch) | |
tree | e29474a57388a7e1cf8269f553c5be8c2ff36aa1 /test/functional/helpers.lua | |
parent | 22ea2900d0eeca0f3cdc4ee5dbfce66966d1a661 (diff) | |
parent | c8aaabc09c9cd27aeadf395fc025260054490081 (diff) | |
download | rneovim-c416e6874e7382721e52720983cd8c283dd738f1.tar.gz rneovim-c416e6874e7382721e52720983cd8c283dd738f1.tar.bz2 rneovim-c416e6874e7382721e52720983cd8c283dd738f1.zip |
Merge pull request #3106 from bfredl/nowaitreturn
Don't show return prompt between lines of the same vim_err_write message #3106
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 6055cc3c59..07e0809dbc 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -246,6 +246,10 @@ local function nvim(method, ...) return request('vim_'..method, ...) end +local function nvim_async(method, ...) + session:notify('vim_'..method, ...) +end + local function buffer(method, ...) return request('buffer_'..method, ...) end @@ -341,6 +345,7 @@ return { expect = expect, ok = ok, nvim = nvim, + nvim_async = nvim_async, nvim_prog = nvim_prog, nvim_dir = nvim_dir, buffer = buffer, |