mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
fix(spec): make sure imported specs are sorted alphabetically
This commit is contained in:
parent
e5ba443416
commit
ff76e58961
1 changed files with 9 additions and 1 deletions
|
@ -254,7 +254,15 @@ function Spec:import(spec)
|
|||
self.modules[#self.modules + 1] = spec.import
|
||||
|
||||
local imported = 0
|
||||
|
||||
---@type string[]
|
||||
local modnames = {}
|
||||
Util.lsmod(spec.import, function(modname)
|
||||
modnames[#modnames + 1] = modname
|
||||
end)
|
||||
table.sort(modnames)
|
||||
|
||||
for _, modname in ipairs(modnames) do
|
||||
imported = imported + 1
|
||||
Util.track({ import = modname })
|
||||
self.importing = modname
|
||||
|
@ -273,7 +281,7 @@ function Spec:import(spec)
|
|||
Util.track()
|
||||
end,
|
||||
})
|
||||
end)
|
||||
end
|
||||
if imported == 0 then
|
||||
self:error("No specs found for module " .. spec.import)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue