aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-08-17 16:45:35 +0200
committerGitHub <noreply@github.com>2022-08-17 16:45:35 +0200
commit35653e6bcda6923b5213fb9356c35067d6d0288f (patch)
tree05188f0b72e9aa7432f2f08516a6f239e491419f /test/functional/helpers.lua
parentf7cfca49d6f1380b2ec0b0f7723ea308d0810857 (diff)
parentd879331b0dee66cb106b5bea9efc2f920caf9abd (diff)
downloadrneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.tar.gz
rneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.tar.bz2
rneovim-35653e6bcda6923b5213fb9356c35067d6d0288f.zip
Merge pull request #13457 from bfredl/fÃĪrgtema
feat(highlight): support highlight namespaces per window
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index 8c5a60657a..981cfc306e 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -244,10 +244,12 @@ function module.run_session(lsession, request_cb, notification_cb, setup_cb, tim
last_error = nil
error(err)
end
+
+ return session.eof_err
end
function module.run(request_cb, notification_cb, setup_cb, timeout)
- module.run_session(session, request_cb, notification_cb, setup_cb, timeout)
+ return module.run_session(session, request_cb, notification_cb, setup_cb, timeout)
end
function module.stop()