vijaymarupudi / nvim-fzf

A Lua API for using fzf in neovim.
MIT License
340 stars 13 forks source link

libuv new_ pipe and spawn fails with certain nvim releases #14

Closed ibhagwan closed 3 years ago

ibhagwan commented 3 years ago

nvim-fzf breaks with the official 0.5 app.image with:

E5108: Error executing lua ...nvim/site/pack/packer/start/fzf-lua/lua/fzf-lua/core.lua:215: ...l/share/nvim/site/pack/packer/start/nvim-fzf/lua/fzf.lua:130: ...nvim/site/pack/packer/start/nvim-fzf/lua/fzf/helpers.lua:29: bad argument #1 to 'new_pipe' (boolean expected, got no value)

this happens due to missing arguments for both uv.new_pipe()and uv.spawn at helpers.lua cmd_line_transformer, not sure what they changed in the functions couldn’t find built in help for them and didn’t have time to dig yet, you can change uv.new_pipe(false) and you’ll see the error from spawn, according to this it requires a function but I didn’t have time to get further than that.