aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorGregory Anders <greg@gpanders.com>2021-08-16 09:31:14 -0600
committerGitHub <noreply@github.com>2021-08-16 08:31:14 -0700
commit0aa8128aaa9e6f714372f7ea7299f4115de0a962 (patch)
tree4699f46b0c156f06b8d1b8f2bf9d748cc6c40735 /test/functional/helpers.lua
parent7146103be2bc576c273fd9df2f922b6b5ba4c972 (diff)
downloadrneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.tar.gz
rneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.tar.bz2
rneovim-0aa8128aaa9e6f714372f7ea7299f4115de0a962.zip
feat(defaults): map CTRL-L to search highlights, update diffs #15385
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index c1f50adb10..21ae529b71 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -42,7 +42,10 @@ module.nvim_set = (
module.nvim_argv = {
module.nvim_prog, '-u', 'NONE', '-i', 'NONE',
'--cmd', module.nvim_set,
- '--cmd', 'unmap Y', '--embed'}
+ '--cmd', 'unmap Y',
+ '--cmd', 'unmap <C-L>',
+ '--embed'}
+
-- Directory containing nvim.
module.nvim_dir = module.nvim_prog:gsub("[/\\][^/\\]+$", "")
if module.nvim_dir == module.nvim_prog then