echasnovski / mini.nvim

Library of 40+ independent Lua modules improving overall Neovim (version 0.8 and higher) experience with minimal effort
MIT License
5.26k stars 189 forks source link

Mark and go to next position #1339

Closed phrmendes closed 2 hours ago

phrmendes commented 2 hours ago

Contributing guidelines

Module(s)

mini.pick

Description

Is there a way to use the telescope.nvim or fzf behavior so that when you select an entry, the selection goes to the next item below?

echasnovski commented 2 hours ago

Yes, there is, albeit not very convenient one. It requires making a custom mapping which emulates pressing "mark" + "go down" keys (thus should be mapped to some other key and not override default 'mark' keys, <C-x>). See this comment.

phrmendes commented 2 hours ago

Thanks!