-
require("fzf-lua").fzf_exec(
{
"11111\n22222",
"33333\n44444",
},
{
fzf_opts = {
["--read0"] = true,
},
}
) This code will have two entries before #2152 and only one after, how should I modify it? |
Beta Was this translation helpful? Give feedback.
Answered by
ibhagwan
Aug 15, 2025
Replies: 1 comment 1 reply
-
You can make it work again by using the below, I’ll fix it tomorrow to also work with require("fzf-lua").fzf_exec(
{
"11111\n22222",
"33333\n44444",
},
{
multiline = true,
}
) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
aidancz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can make it work again by using the below, I’ll fix it tomorrow to also work with
read0
regardless ofmultiline
: