Conflict with substitude mode #153
-
Hello, When I hit vim.keymap.set("n", "s", "<nop>", { desc = "It's the worse place in the universe" }) I can't seem to find the conflicting mapping.
I did call Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I noticed that it's conflicting with these bindings: vim.keymap.set('n', "s<Left>", ":ISwapNodeWithLeft<CR>", { desc = "Swap argument with left" })
vim.keymap.set('n', "s<Right>", ":ISwapNodeWithRight<CR>", { desc = "Swap argument with right" }) What I don't understand is, after the delay (to distinguish between |
Beta Was this translation helpful? Give feedback.
If that's the full output of
verbose map s
then there is no leap mapping fors
in normal mode. Do you see it inverbose map S
. yours
to<nop>
mapping is causing leap to not add a mapping fors
(this is documented)