[mini.surround] re-enable built-in s behaviour
#2092
-
Contributing guidelines
Module(s)mini.surround QuestionIs there a way to disable this feature? nvim-mini/mini.surround@fc6fbc3 I liked how it worked previously, where if there is a long delay between "s" and another key - it actually sends the built-in "s" key. When I use surround, I press "s" followed by the respective key within the timeout len to activate the surround feature. |
Beta Was this translation helpful? Give feedback.
Answered by
echasnovski
Oct 27, 2025
Replies: 1 comment
-
|
Yes, you can add |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mau-mauricelim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can add
vim.keymap.del({ 'n', 'x' }, 's')afterrequire('mini.surround').setup()call. If you don't usesaforaddaction, use onlyvim.keymap.del('n', 's').