feat: Adds <c-v> key binding to oil.nvim, also new spelling words

This commit is contained in:
2024-11-24 21:29:15 -05:00
parent 3badd6a046
commit 1dd7460ac4
3 changed files with 6 additions and 0 deletions

View File

@@ -9,6 +9,11 @@ return {
keymaps = {
["<C-h>"] = false,
["<M-h>"] = "actions.select_split",
["<C-v>"] = {
"actions.select",
opts = { vertical = true },
desc = "Open the entry in a vertical split",
},
},
view_options = {
is_hidden_file = function(name, _) -- second arg is bufnr, but not currently used.