fix(doc): remove tree_cb from edit_no_picker

This commit is contained in:
kiyan
2022-01-21 12:36:45 +01:00
parent 14bdf134f9
commit 724716ec2e
2 changed files with 2 additions and 2 deletions

View File

@@ -243,7 +243,7 @@ These are the default bindings:
-- default mappings
local list = {
{ key = {"<CR>", "o", "<2-LeftMouse>"}, action = "edit" },
{ key = {"O"}, action = tree_cb("edit_no_picker") },
{ key = {"O"}, action = "edit_no_picker" },
{ key = {"<2-RightMouse>", "<C-]>"}, action = "cd" },
{ key = "<C-v>", action = "vsplit" },
{ key = "<C-x>", action = "split" },

View File

@@ -579,7 +579,7 @@ Defaults to:
lua <<EOF
local list = {
{ key = {"<CR>", "o", "<2-LeftMouse>"}, action = "edit" },
{ key = {"O"}, action = tree_cb("edit_no_picker") },
{ key = {"O"}, action = "edit_no_picker" },
{ key = {"<2-RightMouse>", "<C-]>"}, action = "cd" },
{ key = "<C-v>", action = "vsplit" },
{ key = "<C-x>", action = "split" },