kiwi.nvim icon indicating copy to clipboard operation
kiwi.nvim copied to clipboard

kiwi does not work with nvim 0.9.5

Open iameru opened this issue 1 year ago • 1 comments

tldr: I ran in a missing vim.fs.joinpath from kiwi.nvim/lua/kiwi/utils.lua because of it not being in NVIM 0.9.5

This might sort itself at one point in the future when slow OS distributions like the ubuntu I am forced to use catch up. This might be a non issue, depending on how you look at things. I'd understand if you'd close this. Meanwhile i "fixed" it by Insalling nvim 0.10

Related Issue #18

Solution?

NVIM v0.9.5 does NOT have vim.fs.joinpath while v0.10 apparently has. At least some folk said so: Why is vim.fs.joinpath() missing from neovim 0.9.5 on macOS? (not a macOS but a neovim issue)

0.9.5 does not have vim.fs.joinpath 0.10 does have vim.fs.joinpath

The solution here could either be to release the software with a hint that it needs nvim 0.10 or higher. Even better, not use vim.fs.joinpath?

iameru avatar Jan 18 '25 09:01 iameru

I didn't notice that vim.fs.joinpath() was a new feature. I'll try handling that within a separate function instead of using the built-in function for now.

serenevoid avatar Jan 20 '25 12:01 serenevoid