nvim: fix Oil key maps
This commit is contained in:
parent
edbec9b0d5
commit
4e38fd5de1
1 changed files with 5 additions and 2 deletions
|
@ -35,9 +35,12 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- I use default <c-l> for navigation, so refresh with <c-r>.
|
|
||||||
["<c-r>"] = "actions.refresh",
|
["<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>:"] = {
|
["<leader>:"] = {
|
||||||
"actions.open_cmdline",
|
"actions.open_cmdline",
|
||||||
|
|
Loading…
Add table
Reference in a new issue