You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default action for vim.fn.setqflist is to create a new list.
From the help:
If {action} is not present or is set to ' ', then a new list
is created. The new quickfix list is added after the current
quickfix list in the stack and all the following lists are
freed.
With the current <C-Q>, the user cannot add to the qflist items from different sources (e.g. diagnostic and buffer) to the same qflist. The same can be said for loclist.
The text was updated successfully, but these errors were encountered:
S1M0N38
changed the title
feat: add custom action to setqflist
feat(picker): add custom action to setqflist
Mar 7, 2025
The default action for
vim.fn.setqflist
is to create a new list.From the help:
It would be nice if
https://github.com/folke/snacks.nvim/blob/bc0630e43be5699bb94dadc302c0d21615421d93/lua/snacks/picker/actions.lua#L420C1-L444C4
let you specify a custom action while keeping the
" "
as default.For example
With the current
<C-Q>
, the user cannot add to the qflist items from different sources (e.g. diagnostic and buffer) to the same qflist. The same can be said for loclist.The text was updated successfully, but these errors were encountered: