fix: uv shim was not falling back to vim.loop (#1370)

This commit is contained in:
Michael Braun 2024-03-22 09:15:46 +01:00 committed by GitHub
parent b2174810cd
commit 61dddaec58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
local M = {}
M._start = 0
vim.uv = vim.uv or vim.uv
vim.uv = vim.uv or vim.loop
local function profile_require()
local done = {} ---@type table<string, true>