How to send all results to trouble.nvim? #1109
Answered
by
ibhagwan
quantum-booty
asked this question in
Q&A
-
I'd like to achieve the following workflow:
|
Beta Was this translation helpful? Give feedback.
Answered by
ibhagwan
Mar 30, 2024
Replies: 1 comment
-
You can use the same action mentioned in #431 but also send a require'fzf-lua'.setup {
files = {
actions = { ['ctrl-t'] = { fn = _G.my_action, prefix = 'select-all+' } },
}
} EDIT: Btw, you can also invert selection with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
quantum-booty
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the same action mentioned in #431 but also send a
select-all
commands to fzf, for example:EDIT: Btw, you can also invert selection with
toggle-all
, see #807, andman fzf
and search forAVAILABLE ACTIONS
to understand how/why this works.