From 724716ec2ef141658f5e552a8c389311e29fb9a1 Mon Sep 17 00:00:00 2001 From: kiyan Date: Fri, 21 Jan 2022 12:36:45 +0100 Subject: [PATCH] fix(doc): remove tree_cb from edit_no_picker --- README.md | 2 +- doc/nvim-tree-lua.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a1945b6..d1b85acc 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,7 @@ These are the default bindings: -- default mappings local list = { { key = {"", "o", "<2-LeftMouse>"}, action = "edit" }, - { key = {"O"}, action = tree_cb("edit_no_picker") }, + { key = {"O"}, action = "edit_no_picker" }, { key = {"<2-RightMouse>", ""}, action = "cd" }, { key = "", action = "vsplit" }, { key = "", action = "split" }, diff --git a/doc/nvim-tree-lua.txt b/doc/nvim-tree-lua.txt index 301fd2a4..667c041f 100644 --- a/doc/nvim-tree-lua.txt +++ b/doc/nvim-tree-lua.txt @@ -579,7 +579,7 @@ Defaults to: lua <", "o", "<2-LeftMouse>"}, action = "edit" }, - { key = {"O"}, action = tree_cb("edit_no_picker") }, + { key = {"O"}, action = "edit_no_picker" }, { key = {"<2-RightMouse>", ""}, action = "cd" }, { key = "", action = "vsplit" }, { key = "", action = "split" },