mirror of https://github.com/folke/lazy.nvim.git
chore: cleanup
This commit is contained in:
parent
2080694e34
commit
68a8d57b5b
|
@ -11,23 +11,21 @@ function M.track(name, time)
|
||||||
if name then
|
if name then
|
||||||
local entry = {
|
local entry = {
|
||||||
name = name,
|
name = name,
|
||||||
time = time or M.time(),
|
time = time or vim.loop.hrtime(),
|
||||||
}
|
}
|
||||||
table.insert(M._profiles[#M._profiles], entry)
|
table.insert(M._profiles[#M._profiles], entry)
|
||||||
|
|
||||||
if not time then
|
if not time then
|
||||||
table.insert(M._profiles, entry)
|
table.insert(M._profiles, entry)
|
||||||
end
|
end
|
||||||
|
return entry
|
||||||
else
|
else
|
||||||
local entry = table.remove(M._profiles)
|
local entry = table.remove(M._profiles)
|
||||||
entry.time = M.time() - entry.time
|
entry.time = vim.loop.hrtime() - entry.time
|
||||||
|
return entry
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.time()
|
|
||||||
return vim.loop.hrtime()
|
|
||||||
end
|
|
||||||
|
|
||||||
function M.file_exists(file)
|
function M.file_exists(file)
|
||||||
return vim.loop.fs_stat(file) ~= nil
|
return vim.loop.fs_stat(file) ~= nil
|
||||||
end
|
end
|
||||||
|
|
|
@ -34,7 +34,7 @@ function M.setup(opts)
|
||||||
Config.setup(opts)
|
Config.setup(opts)
|
||||||
Util.track()
|
Util.track()
|
||||||
|
|
||||||
Util.track("plugins")
|
Util.track("state")
|
||||||
if Module.changed or not State.load() then
|
if Module.changed or not State.load() then
|
||||||
-- rebuild state
|
-- rebuild state
|
||||||
local Plugin = require("lazy.plugin")
|
local Plugin = require("lazy.plugin")
|
||||||
|
|
Loading…
Reference in New Issue