-
I have just (finally) switched to snacks.picker. I have been trying to disable some default keymaps but haven't figured out how. Anyone Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
pkazmier
Jan 18, 2025
Replies: 2 comments 2 replies
-
You can set the value of the key to {
"snacks.nvim",
opts = {
---@type snacks.picker.Config
picker = {
win = {
input = {
keys = {
["<c-b>"] = false,
["<c-f>"] = false,
},
},
},
},
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
echaya
-
Thanks. I think it works for most keys. Somehow When I do on ScrollWheelUp/Down seems doesn't work.
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set the value of the key to
false
: