1
1
local Config = require (" lazy.core.config" )
2
+ local Pkg = require (" lazy.pkg" )
2
3
local Util = require (" lazy.core.util" )
3
4
4
5
--- This class is used to manage the plugins.
@@ -10,6 +11,7 @@ local Util = require("lazy.core.util")
10
11
--- @field dirty table<string , boolean>
11
12
--- @field spec LazySpecLoader
12
13
--- @field fragments LazyFragments
14
+ --- @field pkgs table<string , number>
13
15
local M = {}
14
16
15
17
--- @param spec LazySpecLoader
@@ -22,9 +24,30 @@ function M.new(spec)
22
24
self .frag_to_meta = {}
23
25
self .str_to_meta = {}
24
26
self .dirty = {}
27
+ self .pkgs = {}
25
28
return self
26
29
end
27
30
31
+ -- import package specs
32
+ function M :load_pkgs ()
33
+ if not Config .options .pkg .enabled then
34
+ return
35
+ end
36
+ local specs = Pkg .spec ()
37
+ for dir , spec in pairs (specs ) do
38
+ local meta , fragment = self :add (spec )
39
+ if meta and fragment then
40
+ -- tag all package fragments as optional
41
+ for _ , fid in ipairs (meta ._ .frags ) do
42
+ local frag = self .fragments :get (fid )
43
+ frag .spec .optional = true
44
+ end
45
+ -- keep track of the top-level package fragment
46
+ self .pkgs [dir ] = fragment .id
47
+ end
48
+ end
49
+ end
50
+
28
51
--- Remove a plugin and all its fragments.
29
52
--- @param name string
30
53
function M :del (name )
@@ -88,6 +111,7 @@ function M:add(plugin)
88
111
self .plugins [meta .name ] = meta
89
112
self .frag_to_meta [fragment .id ] = meta
90
113
self .dirty [meta .name ] = true
114
+ return meta , fragment
91
115
end
92
116
93
117
--- Rebuild all plugins based on dirty fragments,
@@ -101,6 +125,7 @@ function M:rebuild()
101
125
self .dirty [meta .name ] = true
102
126
else
103
127
-- fragment was deleted, so remove it from plugin
128
+ self .frag_to_meta [fid ] = nil
104
129
--- @param f number
105
130
meta ._ .frags = vim .tbl_filter (function (f )
106
131
return f ~= fid
@@ -260,11 +285,28 @@ function M:fix_disabled()
260
285
return changes
261
286
end
262
287
288
+ --- Removes package fragments for plugins that no longer use the same directory.
289
+ function M :fix_pkgs ()
290
+ for dir , fid in pairs (self .pkgs ) do
291
+ local plugin = self .frag_to_meta [fid ]
292
+ plugin = plugin and self .plugins [plugin .name ]
293
+ if plugin then
294
+ -- check if plugin is still in the same directory
295
+ if plugin .dir ~= dir then
296
+ self .fragments :del (fid )
297
+ end
298
+ end
299
+ end
300
+ self :rebuild ()
301
+ end
302
+
263
303
--- Resolve all plugins, based on cond, enabled and optional.
264
304
function M :resolve ()
265
305
Util .track (" resolve plugins" )
266
306
self :rebuild ()
267
307
308
+ self :fix_pkgs ()
309
+
268
310
self :fix_cond ()
269
311
270
312
-- selene: allow(empty_loop)
0 commit comments