Replies: 1 comment
-
How are you deleting the keymap? Are you specifying the buffer? From my config: vim.keymap.del("n", "<BS>", { buffer = bufnr }) -- api.node.navigate.parent_close, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to prevent NVimTree from taking over
<Tab>
by default. Ideally — I would like it to not override any of my custom hotkeys, unless specifically asked to.For example, I normally have
<Tab>
set to "switch between currently opened windows", like so:I would like this behaviour to continue working in all windows, including the
nvim-tree
one.I have checked the
on_attach
section in the manual, however addingvim.keymap.del()
after theapi.config.mappings.default_on_attach(bufnr)
does not seem to work.Any clues?
Beta Was this translation helpful? Give feedback.
All reactions