-
I'm trying to add telescope mapping to grep in a directory, so I added the mapping |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
neo-tree.nvim/lua/neo-tree/defaults.lua Line 374 in 120a83e You can add You can find what other keys are mapped to in this |
Beta Was this translation helpful? Give feedback.
s
is mapped to open in a vsplit by default as you can see here:neo-tree.nvim/lua/neo-tree/defaults.lua
Line 374 in 120a83e
You can add
["s"] = "noop"
in your config to disable this behavior, or change it to["s"] = { "open_vsplit", nowait = false },
to keep the default behavior but wait for additional keys and not decide immediately. See:h map-arguments
for more info about the options.You can find what other keys are mapped to in this
defaults.lua
file as well and do the exact thing for each key.