Populate quickfix list with mini.pick matches #1853
-
Contributing guidelines
Module(s)mini.pick QuestionIs it possible to populate the quickfix list with the matching files from mini.pick? My typical workflow with Telescope was to grep for a given string, populate the quickfix list using |
Beta Was this translation helpful? Give feedback.
Answered by
echasnovski
Jun 11, 2025
Replies: 1 comment 1 reply
-
Yes, it is possible with default
This workflow is more flexible and allows marking items after several queries. So:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
echasnovski
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, it is possible with default
choose_marked
action (which by default populates quickfix list if appropriate). So:<C-a>
(ormark_all
mapping in general).<M-CR>
(orchoose_marked
in general).This workflow is more flexible and allows marking items after several queries. So:
.lua$
query.<C-a>
to mark all items.<C-u>
and limit matches more. For example, type^nvim
.<C-a>
.<M-CR>
to put all marked items across several queries to quickfix list.