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

refactor: replace vim.loop with vim.uv

Open mrr11k opened this issue 1 year ago • 1 comments

This PR uses vim.uv instead of the deprecated vim.loop.

See https://github.com/neovim/neovim/pull/22846 for more info.

mrr11k avatar May 27 '24 19:05 mrr11k

The lazy instructions use a or, incase the user is on older systems to allow using vim.loop still:

if not (vim.uv or vim.loop).fs_stat(lazypath) then

I know kickstart targets stable, but should probably match that instead of requiring the user to be on v0.10+, would lead to one less error if a user happened to be on an old version

purarue avatar May 31 '24 23:05 purarue

I think this is obviated by #936 please feel free to re-open if I'm wrong.

feoh avatar Jul 21 '24 20:07 feoh