aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-01-22 11:10:24 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-01-22 11:10:24 +0100
commit043d8ba422b4f35d82e8acef8438248de94ab167 (patch)
treef87277f9d764b19fdcd529db24d4f0854b8ed81c /test/functional/helpers.lua
parentc86caf7e41c77f85861fc92e1ef1462508d74b24 (diff)
parentb7ee8fbc814c94ce6667a4d7701e53d7724ee260 (diff)
downloadrneovim-043d8ba422b4f35d82e8acef8438248de94ab167.tar.gz
rneovim-043d8ba422b4f35d82e8acef8438248de94ab167.tar.bz2
rneovim-043d8ba422b4f35d82e8acef8438248de94ab167.zip
Merge #5782 'Visual-mode put from @. register'
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index d9c85c03f8..6cae8e6029 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -13,6 +13,8 @@ local check_logs = global_helpers.check_logs
local neq = global_helpers.neq
local eq = global_helpers.eq
local ok = global_helpers.ok
+local map = global_helpers.map
+local filter = global_helpers.filter
local start_dir = lfs.currentdir()
local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim'
@@ -570,6 +572,8 @@ return function(after_each)
neq = neq,
expect = expect,
ok = ok,
+ map = map,
+ filter = filter,
nvim = nvim,
nvim_async = nvim_async,
nvim_prog = nvim_prog,