@@ -141,7 +141,7 @@ Show the mappings: `g?`
141141`gy` Copy Absolute Path | nvim_tree.api.fs.copy.absolute_path() |
142142`ge` Copy Basename | nvim_tree.api.fs.copy.basename() |
143143`H` Toggle Filter: Dotfiles | nvim_tree.api.filter.dotfiles.toggle() |
144- `I` Toggle Filter: Git Ignore | nvim_tree.api.filter.git.ignored.toggle() |
144+ `I` Toggle Filter: Git Ignored | nvim_tree.api.filter.git.ignored.toggle() |
145145`J` Last Sibling | nvim_tree.api.node.navigate.sibling.last() |
146146`K` First Sibling | nvim_tree.api.node.navigate.sibling.first() |
147147`L` Toggle Group Empty | nvim_tree.api.node.open.toggle_group_empty() |
@@ -157,7 +157,7 @@ Show the mappings: `g?`
157157`s ` Run System | nvim_tree.api.node.run.system() |
158158`S ` Search | nvim_tree.api.tree.search_node() |
159159`u ` Rename: Full Path | nvim_tree.api.fs.rename_full() |
160- `U` Toggle Filter: Hidden | nvim_tree.api.filter.custom.toggle() |
160+ `U` Toggle Filter: Custom | nvim_tree.api.filter.custom.toggle() |
161161`W` Collapse All | nvim_tree.api.tree.collapse_all() |
162162`x ` Cut | nvim_tree.api.fs.cut() |
163163`y ` Copy Name | nvim_tree.api.fs.copy.filename() |
@@ -428,7 +428,7 @@ You are encouraged to copy these to your {on_attach} function. >lua
428428 vim.keymap.set("n", "gy", api.fs.copy.absolute_path, opts("Copy Absolute Path"))
429429 vim.keymap.set("n", "ge", api.fs.copy.basename, opts("Copy Basename"))
430430 vim.keymap.set("n", "H", api.filter.dotfiles.toggle, opts("Toggle Filter: Dotfiles"))
431- vim.keymap.set("n", "I", api.filter.git.ignored.toggle, opts("Toggle Filter: Git Ignore "))
431+ vim.keymap.set("n", "I", api.filter.git.ignored.toggle, opts("Toggle Filter: Git Ignored "))
432432 vim.keymap.set("n", "J", api.node.navigate.sibling.last, opts("Last Sibling"))
433433 vim.keymap.set("n", "K", api.node.navigate.sibling.first, opts("First Sibling"))
434434 vim.keymap.set("n", "L", api.node.open.toggle_group_empty, opts("Toggle Group Empty"))
@@ -444,7 +444,7 @@ You are encouraged to copy these to your {on_attach} function. >lua
444444 vim.keymap.set("n", "s", api.node.run.system, opts("Run System"))
445445 vim.keymap.set("n", "S", api.tree.search_node, opts("Search"))
446446 vim.keymap.set("n", "u", api.fs.rename_full, opts("Rename: Full Path"))
447- vim.keymap.set("n", "U", api.filter.custom.toggle, opts("Toggle Filter: Hidden "))
447+ vim.keymap.set("n", "U", api.filter.custom.toggle, opts("Toggle Filter: Custom "))
448448 vim.keymap.set("n", "W", api.tree.collapse_all, opts("Collapse All"))
449449 vim.keymap.set("n", "x", api.fs.cut, opts("Cut"))
450450 vim.keymap.set("n", "y", api.fs.copy.filename, opts("Copy Name"))
0 commit comments