nvim: fix Oil key maps

This commit is contained in:
Fernando Schauenburg 2025-06-30 22:03:48 +02:00
parent edbec9b0d5
commit 4e38fd5de1

View file

@ -35,9 +35,12 @@ return {
},
},
-- I use default <c-l> for navigation, so refresh with <c-r>.
["<c-r>"] = "actions.refresh",
["<c-l>"] = false,
-- Remove default keymaps that I use for navigation.
-- NOTE: the C must be capitalized (bug in Oil)
["<C-h>"] = false, -- use <c-s> intead
["<C-l>"] = false, -- use <c-r> instead
["<leader>:"] = {
"actions.open_cmdline",