[mini.jump2d] Question time action in single_character #2269
-
Contributing guidelines
Module(s)mini.jump2d QuestionFirst of all, I would like to express my immense gratitude to Chasnovski and the Mini team for these incredible tools that make a huge difference in the daily workflow of many developers. First of all, I would like to express my immense gratitude to Chasnovski and the Mini team for these incredible tools that make a huge difference in the daily workflow of many developers. Recently I've been switching most of the plugins I use to their mini equivalents. And one of my favorite plugins, hop, has been discontinued. I still use it very well, but I also installed MiniJump2d to do some testing. I notice a slight delay before the first message appears to start typing. Can someone confirm if this is normal or if there's an option to increase the speed? -- A little delay to show 'Enter single character to search'
vim.keymap.set(
'n', 's', function()
require('mini.jump2d').start(require('mini.jump2d').builtin_opts.single_character)
end
)
-- Works perfect
map(
'n', 'S', function() require('mini.jump2d').start() end
)
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Thank you for kind words! Especially expressed twice :)
There are two possible things possibly happening here at the same time:
I would also point out that 'mini.jump2d' is planned to be redesigned soon-ish (see #1818). In particular, the equivalent of Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for your reply. I'm glad we'll have news. I did some tests modifying the mapping for the new key and also testing directly with the command, and I continued to notice the delay. Then I noticed that what's actually taking a little time is the appearance of the message "(mini.jump2d) Enter single character to search", but, if I start typing after pressing the mapped keys, it works. |
Beta Was this translation helpful? Give feedback.
Thank you for kind words! Especially expressed twice :)
There are two possible things possibly happening here at the same time:
If you by "first message" yo…