-
Hi, I'm pretty new to the advanced features of neovim and to lua. I see this block of code (and several like it) in the file
I've googled and searched the neovim help pages but cannot find any explanation of what Please help! :) Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
That’s because it’s meant to be used only internally inside fzf-lua :) Until not long ago there were different code paths for buffer entries (buffers, lines, tabs, etc) and file entries (files, git_file, lsp_xxx, grep_xxx, etc), I combined the actions code for both and now In short, fzf-lua/lua/fzf-lua/actions.lua Lines 129 to 130 in 985e100 The internal code deduplication resulting from said change: fzf-lua/lua/fzf-lua/actions.lua Lines 369 to 377 in 985e100 |
Beta Was this translation helpful? Give feedback.
-
OK, that's cool. thank you! so, I know the default behavior for file_edit when multiple files are selected in the picker is to add them to the quckfix list. I'd like to add an option to just open the files in separate buffers (not windows or tabs) so I can skip the step of working through the quickfix list. Does that sound like a reasonable use-case (workflow) and would that be relatively easy? :) Thanks again! |
Beta Was this translation helpful? Give feedback.
-
sorry, one more quick follow up. Here's my code:
I stuck with using I love it! |
Beta Was this translation helpful? Give feedback.
OK, that's cool. thank you!
so, I know the default behavior for file_edit when multiple files are selected in the picker is to add them to the quckfix list. I'd like to add an option to just open the files in separate buffers (not windows or tabs) so I can skip the step of working through the quickfix list. Does that sound like a reasonable use-case (workflow) and would that be relatively easy? :)
Thanks again!