Skip to content

Commit

Permalink
ci: fix: add new keybind and config to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dxrcy committed Jan 30, 2024
1 parent d65092d commit 0e46599
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/nvim-tree-lua.txt
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ Following is the default configuration. See |nvim-tree-opts| for details.
filters = {
git_ignored = true,
dotfiles = false,
binaries = false,
git_clean = false,
no_buffer = false,
no_bookmark = false,
Expand Down Expand Up @@ -2194,6 +2195,7 @@ You are encouraged to copy these to your own |nvim-tree.on_attach| function.
vim.keymap.set('n', 'g?', api.tree.toggle_help, opts('Help'))
vim.keymap.set('n', 'gy', api.fs.copy.absolute_path, opts('Copy Absolute Path'))
vim.keymap.set('n', 'H', api.tree.toggle_hidden_filter, opts('Toggle Filter: Dotfiles'))
vim.keymap.set('n', 'h', api.tree.toggle_binaries_filter, opts('Toggle Filter: Binaries'))
vim.keymap.set('n', 'I', api.tree.toggle_gitignore_filter, opts('Toggle Filter: Git Ignore'))
vim.keymap.set('n', 'J', api.node.navigate.sibling.last, opts('Last Sibling'))
vim.keymap.set('n', 'K', api.node.navigate.sibling.first, opts('First Sibling'))
Expand Down

0 comments on commit 0e46599

Please sign in to comment.