fix: incorrect default config actions (#414)
This commit is contained in:
parent
76bfc25520
commit
c82b26eb4b
3 changed files with 9 additions and 9 deletions
|
|
@ -58,9 +58,9 @@ local default_config = {
|
|||
keymaps = {
|
||||
["g?"] = "actions.show_help",
|
||||
["<CR>"] = "actions.select",
|
||||
["<C-s>"] = { "actions.select_split", opts = { vertical = true } },
|
||||
["<C-h>"] = { "actions.select_split", opts = { horizontal = true } },
|
||||
["<C-t>"] = { "actions.select_split", opts = { tab = true } },
|
||||
["<C-s>"] = { "actions.select", opts = { vertical = true } },
|
||||
["<C-h>"] = { "actions.select", opts = { horizontal = true } },
|
||||
["<C-t>"] = { "actions.select", opts = { tab = true } },
|
||||
["<C-p>"] = "actions.preview",
|
||||
["<C-c>"] = "actions.close",
|
||||
["<C-l>"] = "actions.refresh",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue