mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-20 05:16:45 +00:00
fix: uv shim was not falling back to vim.loop (#1370)
This commit is contained in:
parent
b2174810cd
commit
61dddaec58
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
M._start = 0
|
M._start = 0
|
||||||
|
|
||||||
vim.uv = vim.uv or vim.uv
|
vim.uv = vim.uv or vim.loop
|
||||||
|
|
||||||
local function profile_require()
|
local function profile_require()
|
||||||
local done = {} ---@type table<string, true>
|
local done = {} ---@type table<string, true>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue