@@ -18,38 +18,31 @@ M.loaders = nil
18
18
--- @type LazyPlugin[]
19
19
M .loading = {}
20
20
21
- --- @param plugin LazyPlugin
22
- function M .add (plugin )
23
- if plugin .init or (plugin .opt == false ) then
24
- table.insert (M .loaders .init , plugin .name )
21
+ function M .get_loaders ()
22
+ --- @type table<LoaderType , table<string , string[]>> |{ init : string[] }
23
+ local loaders = { init = {} }
24
+ for _ , lt in ipairs (M .types ) do
25
+ loaders [lt ] = {}
25
26
end
26
-
27
- for _ , loader_type in ipairs ( M . types ) do
28
- --- @type ( string | string[] ) ?
29
- local loaders = plugin [ loader_type ]
30
- if plugin [ loader_type ] then
31
- loaders = type ( loaders ) == " table " and loaders or { loaders }
32
- --- @cast loaders string[]
33
- for _ , loader in ipairs (loaders ) do
34
- if not M . loaders [loader_type ][loader ] then
35
- M . loaders [loader_type ][loader ] = {}
27
+ for _ , plugin in pairs ( Config . plugins ) do
28
+ if plugin . init or ( plugin . opt == false ) then
29
+ table.insert ( loaders . init , plugin . name )
30
+ end
31
+ for _ , lt in ipairs ( M . types ) do
32
+ if plugin [ lt ] then
33
+ --- @diagnostic disable-next-line : no-unknown
34
+ for _ , loader in ipairs (type ( plugin [ lt ]) == " table " and plugin [ lt ] or { plugin [ lt ] } ) do
35
+ loaders [lt ][loader ] = loaders [ lt ][ loader ] or {}
36
+ table.insert ( loaders [lt ][loader ], plugin . name )
36
37
end
37
- table.insert (M .loaders [loader_type ][loader ], plugin .name )
38
38
end
39
39
end
40
40
end
41
+ return loaders
41
42
end
42
43
43
44
function M .setup ()
44
- if not M .loaders then
45
- M .loaders = { init = {} }
46
- for _ , type in ipairs (M .types ) do
47
- M .loaders [type ] = {}
48
- end
49
- for _ , plugin in pairs (Config .plugins ) do
50
- M .add (plugin )
51
- end
52
- end
45
+ M .loaders = M .loaders or M .get_loaders ()
53
46
54
47
local group = vim .api .nvim_create_augroup (" lazy_loader" , {
55
48
clear = true ,
@@ -167,53 +160,42 @@ end
167
160
--- @param modname string
168
161
function M .module (modname )
169
162
local idx = modname :find (" ." , 1 , true ) or # modname + 1
170
-
171
163
while idx do
172
164
local name = modname :sub (1 , idx - 1 )
173
165
local plugins = M .loaders .module [name ]
174
166
if plugins then
167
+ M .loaders .module [name ] = nil
175
168
local reason = { require = modname }
176
169
if # M .loading == 0 then
177
170
local f = 3
178
171
while not reason .source do
179
172
local info = debug.getinfo (f , " S" )
180
- f = f + 1
181
173
if not info then
182
174
break
183
175
end
184
176
if info .what ~= " C" then
185
177
reason .source = info .source :sub (2 )
186
178
end
179
+ f = f + 1
187
180
end
188
181
end
189
182
M .load (plugins , reason )
190
183
end
191
184
idx = modname :find (" ." , idx + 1 , true )
192
185
end
193
-
194
- --- @diagnostic disable-next-line : no-unknown
195
- local mod = package.loaded [modname ]
196
- if type (mod ) == " table" then
197
- return function ()
198
- return mod
199
- end
200
- end
201
186
end
202
187
203
188
--- @param plugins string | LazyPlugin | string[] | LazyPlugin[]
204
189
--- @param reason { [string] : string }
205
190
--- @param opts ? { load_start : boolean }
206
191
function M .load (plugins , reason , opts )
207
- if type (plugins ) == " string" or plugins .name then
208
- --- @diagnostic disable-next-line : assign-type-mismatch
209
- plugins = { plugins }
210
- end
211
-
192
+ --- @diagnostic disable-next-line : cast-local-type
193
+ plugins = type (plugins ) == " string" or plugins .name and { plugins } or plugins
212
194
--- @cast plugins (string | LazyPlugin )[]
195
+
213
196
for _ , plugin in ipairs (plugins ) do
214
- if type (plugin ) == " string" then
215
- plugin = Config .plugins [plugin ]
216
- end
197
+ plugin = type (plugin ) == " string" and Config .plugins [plugin ] or plugin
198
+ --- @cast plugin LazyPlugin
217
199
218
200
if not plugin .loaded then
219
201
--- @diagnostic disable-next-line : assign-type-mismatch
0 commit comments