Open alvaro17f opened 2 years ago
I can confirm it isn't working
I fixed the problem like this:
In ~.local/share/nvim/lazy/fm-nvim/lua/fm-nvim.lua
function M.Joshuto(dir)
dir = dir or "."
if config.ui.default == "float" then
createWin(config.cmds.joshuto_cmd .. " --choosefiles /tmp/fm-nvim --path " .. dir, "l")
elseif config.ui.default == "split" then
createSplit(config.cmds.joshuto_cmd .. " --choosefiles /tmp/fm-nvim --path " .. dir, "l")
end
end
Hi, big fan of your plugin here.
I found that Joshuto is not working properly. Seems like the --choosefiles subcommand it's been deprecated and substituted.
Thanks for such a useful plugin.