We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f13f69 commit 78b981bCopy full SHA for 78b981b
lua/lazy/core/cache.lua
@@ -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
11
local uv = vim.loop
12
13
local M = {}
lua/lazy/init.lua
@@ -34,7 +34,7 @@ function M.setup(spec, opts)
34
local start = vim.loop.hrtime()
35
36
-- use the NEovim cache if available
37
- if vim.loader then
+ if vim.loader and vim.fn.has("nvim-0.9.1") == 1 then
38
package.loaded["lazy.core.cache"] = vim.loader
39
end
40
0 commit comments