diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 09:31:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 08:31:14 -0700 |
commit | 0aa8128aaa9e6f714372f7ea7299f4115de0a962 (patch) | |
tree | 4699f46b0c156f06b8d1b8f2bf9d748cc6c40735 /test/functional/helpers.lua | |
parent | 7146103be2bc576c273fd9df2f922b6b5ba4c972 (diff) | |
download | rneovim-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.lua | 5 |
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 |