feat(defaults): map CTRL-L to search highlights, update diffs #15385

This commit is contained in:
Gregory Anders
2021-08-16 09:31:14 -06:00
committed by GitHub
parent 7146103be2
commit 0aa8128aaa
7 changed files with 29 additions and 11 deletions

View File

@@ -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