Skip to content

Commit 78b981b

Browse files
committed
fix(loader): keep using the internal lua cache till 0.9.1
1 parent 5f13f69 commit 78b981b

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

lua/lazy/core/cache.lua

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
---@diagnostic disable: duplicate-doc-alias
2-
---@diagnostic disable: duplicate-doc-field
3-
---@diagnostic disable: duplicate-set-field
4-
5-
-- interop with the native Neovim loader
6-
if vim.loader then
7-
return vim.loader
8-
end
9-
10-
-- NEOVIM
111
local uv = vim.loop
122

133
local M = {}

lua/lazy/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function M.setup(spec, opts)
3434
local start = vim.loop.hrtime()
3535

3636
-- use the NEovim cache if available
37-
if vim.loader then
37+
if vim.loader and vim.fn.has("nvim-0.9.1") == 1 then
3838
package.loaded["lazy.core.cache"] = vim.loader
3939
end
4040

0 commit comments

Comments
 (0)