fix: change some navigation bindings

This commit is contained in:
2024-10-31 17:54:24 +01:00
parent 93b501048d
commit 3a6633202f
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -28,12 +28,12 @@ return {
skip_confirm_for_simple_edits = true, skip_confirm_for_simple_edits = true,
watch_for_changes = false, watch_for_changes = false,
keymaps = { keymaps = {
["<Esc>"] = "actions.close",
["q"] = "actions.close", ["q"] = "actions.close",
["<C-s>"] = false, ["<C-s>"] = false,
["<C-l>"] = false, ["<C-h>"] = "actions.parent",
["<C-l>"] = "actions.select",
["<C-r>"] = "actions.refresh", ["<C-r>"] = "actions.refresh",
["<S-h>"] = "actions.parent",
["<S-l>"] = "actions.select",
}, },
view_options = { view_options = {
show_hidden = true, show_hidden = true,
+1 -1
View File
@@ -22,7 +22,7 @@ return {
n = { n = {
q = actions.close, q = actions.close,
["<C-c>"] = actions.close, ["<C-c>"] = actions.close,
["<S-l>"] = actions.select_default, ["<C-l>"] = actions.select_default,
}, },
}, },
}, },