We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86f2c67 commit 74d8b8eCopy full SHA for 74d8b8e
lua/lazy/manage/init.lua
@@ -9,7 +9,7 @@ local M = {}
9
---@field clear? boolean
10
---@field show? boolean
11
---@field mode? string
12
----@field plugins? LazyPlugin[]
+---@field plugins? (LazyPlugin|string)[]
13
---@field concurrency? number
14
15
---@param ropts RunnerOpts
@@ -18,6 +18,10 @@ function M.run(ropts, opts)
18
opts = opts or {}
19
20
if opts.plugins then
21
+ ---@param plugin string|LazyPlugin
22
+ opts.plugins = vim.tbl_map(function(plugin)
23
+ return type(plugin) == "string" and Config.plugins[plugin] or plugin
24
+ end, vim.tbl_values(opts.plugins))
25
ropts.plugins = opts.plugins
26
end
27
0 commit comments