How do you unbind a key? #1619
Answered
by
gegoune
unrealapex
asked this question in
Q&A
-
I am trying to bind require("nvim-tree").setup({
sort_by = "case_sensitive",
view = {
adaptive_size = true,
mappings = {
list = {
{ key = "u", action = "dir_up" },
-- unbind -
{ key = "-", action = "" },
},
},
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = true,
},
})
|
Beta Was this translation helpful? Give feedback.
Answered by
gegoune
Oct 2, 2022
Replies: 1 comment 3 replies
-
Try setting it to |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
unrealapex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try setting it to
nil
.