Unmap <C-l> in netrw buffers so it can be used for natigation

This commit is contained in:
Kenneth Benzie 2024-04-01 23:25:31 +01:00
parent ab2d68579f
commit 61d734fbc0

View File

@ -23,3 +23,15 @@ vim.keymap.set('n', '-', function()
vim.fn.search('\\<' .. filename .. '\\>') vim.fn.search('\\<' .. filename .. '\\>')
end end
end) end)
-- Unmap <C-l> in netrw buffers so it can be used for natigation
vim.api.nvim_create_autocmd('FileType', {
pattern = 'netrw',
group = vim.api.nvim_create_augroup('netrw_unmap', {}),
callback = function()
local buffer = vim.api.nvim_get_current_buf()
if vim.fn.hasmapto('<Plug>NetrwRefresh') == 1 then
vim.keymap.del('n', '<C-l>', { buffer = buffer })
end
end
})