@@ -15,7 +15,7 @@ local funs = { config = true, init = true, run = true }
15
15
--- @field uri string
16
16
--- @field branch ? string
17
17
--- @field dir string
18
- --- @field enabled ? boolean
18
+ --- @field enabled ? boolean | ( fun (): boolean )
19
19
--- @field opt ? boolean
20
20
--- @field init ? fun ( LazyPlugin ) Will always be run
21
21
--- @field config ? fun ( LazyPlugin ) Will be executed when loading the plugin
@@ -36,6 +36,7 @@ local funs = { config = true, init = true, run = true }
36
36
--- @field modname string
37
37
--- @field modpath string
38
38
--- @field plugins table<string , LazyPlugin>
39
+ --- @field funs ? table<string , string[]>
39
40
local Spec = {}
40
41
41
42
--- @param modname string
@@ -58,8 +59,9 @@ function Spec:add(plugin)
58
59
Util .error (" Invalid plugin spec " .. vim .inspect (plugin ))
59
60
end
60
61
plugin .uri = plugin .uri or (" https://github.com/" .. plugin [1 ] .. " .git" )
62
+
63
+ -- PERF: optimized code to get package name without using lua patterns
61
64
if not plugin .name then
62
- -- PERF: optimized code to get package name without using lua patterns
63
65
local name = plugin [1 ]:sub (- 4 ) == " .git" and plugin [1 ]:sub (1 , - 5 ) or plugin [1 ]
64
66
local slash = name :reverse ():find (" /" , 1 , true ) --[[ @as number?]]
65
67
plugin .name = slash and name :sub (# name - slash + 2 ) or plugin [1 ]:gsub (" %W+" , " _" )
@@ -82,21 +84,22 @@ function Spec:normalize(spec, results)
82
84
for _ , s in ipairs (spec ) do
83
85
self :normalize (s , results )
84
86
end
85
- elseif spec .enabled ~= false then
87
+ elseif spec .enabled == nil or spec . enabled == true or ( type ( spec . enabled ) == " function " and spec . enabled ()) then
86
88
local plugin = self :add (spec )
87
89
plugin .requires = plugin .requires and self :normalize (plugin .requires , {}) or nil
88
90
table.insert (results , plugin .name )
89
91
end
90
92
return results
91
93
end
92
94
93
- --- @param spec CachedSpec
95
+ --- @param spec LazySpec
94
96
function Spec .revive (spec )
95
97
if spec .funs then
96
98
--- @type LazySpec
97
99
local loaded = nil
98
100
for fun , plugins in pairs (spec .funs ) do
99
101
for _ , name in pairs (plugins ) do
102
+ --- @diagnostic disable-next-line : no-unknown
100
103
spec .plugins [name ][fun ] = function (...)
101
104
loaded = loaded or Spec .load (spec .modname , spec .modpath )
102
105
return loaded .plugins [name ][fun ](... )
@@ -111,7 +114,7 @@ function M.update_state(check_clean)
111
114
--- @type table< " opt" | " start" , table<string,boolean>>
112
115
local installed = { opt = {}, start = {} }
113
116
for opt , packs in pairs (installed ) do
114
- Util .scandir (Config .options .package_path .. " /" .. opt , function (_ , name , type )
117
+ Util .ls (Config .options .package_path .. " /" .. opt , function (_ , name , type )
115
118
if type == " directory" or type == " link" then
116
119
packs [name ] = true
117
120
end
@@ -153,26 +156,22 @@ function M.process_local(plugin)
153
156
end
154
157
end
155
158
156
- --- @alias LazySpecLoader fun ( modname : string , modpath : string ): LazySpec
157
- --- @param loader ? LazySpecLoader
158
- function M .specs (loader )
159
- loader = loader or Spec .load
159
+ --- @param cache ? table<string,LazySpec>
160
+ function M .specs (cache )
160
161
--- @type LazySpec[]
161
162
local specs = {}
162
163
163
- local function _load (modname , modpath )
164
- local spec = Util . try ( function ( )
165
- return loader ( modname , modpath )
166
- end , " Failed to load ** " .. modname .. " ** " )
167
- if spec then
164
+ local function _load (name , modpath )
165
+ local modname = Config . options . plugins .. ( name and ( " . " .. name ) or " " )
166
+ Util . try ( function ( )
167
+ local spec = cache and cache [ modname ]
168
+ spec = spec and not Module . is_dirty ( modname , modpath ) and Spec . revive ( spec ) or Spec . load ( modname , modpath )
168
169
table.insert (specs , spec )
169
- end
170
+ end , " Failed to load ** " .. modname .. " ** " )
170
171
end
171
172
172
- _load (Config .options .plugins , Config .paths .main )
173
- Util .lsmod (Config .paths .plugins , function (name , modpath )
174
- _load (Config .options .plugins .. " ." .. name , modpath )
175
- end )
173
+ _load (nil , Config .paths .main )
174
+ Util .lsmod (Config .paths .plugins , _load )
176
175
return specs
177
176
end
178
177
@@ -186,22 +185,9 @@ function M.load()
186
185
state = nil
187
186
end
188
187
189
- local loader = state
190
- and function (modname , modpath )
191
- local spec = state and state .specs [modname ]
192
- if (not spec ) or Module .is_dirty (modname , modpath ) then
193
- dirty = true
194
- vim .schedule (function ()
195
- vim .notify (" Reloading " .. modname )
196
- end )
197
- return Spec .load (modname , modpath )
198
- end
199
- return Spec .revive (spec )
200
- end
201
-
202
188
-- load specs
203
189
Util .track (" specs" )
204
- local specs = M .specs (loader )
190
+ local specs = M .specs (state and state . specs )
205
191
Util .track ()
206
192
207
193
-- merge
@@ -225,24 +211,25 @@ function M.load()
225
211
end
226
212
227
213
function M .save ()
228
- if not M .dirty then
229
- return
230
- end
231
-
232
- --- @alias CachedSpec LazySpec |{ funs : table<string , string[]> }
233
214
--- @class LazyState
234
215
local state = {
235
- --- @type table<string , CachedSpec >
216
+ --- @type table<string , LazySpec >
236
217
specs = {},
237
218
loaders = require (" lazy.core.loader" ).loaders ,
238
219
config = Config .options ,
239
220
}
240
221
241
222
for _ , spec in ipairs (M .specs ()) do
242
- --- @cast spec CachedSpec
243
223
spec .funs = {}
244
224
state .specs [spec .modname ] = spec
245
225
for _ , plugin in pairs (spec .plugins ) do
226
+ if plugin .init or (plugin .opt == false and plugin .config ) then
227
+ -- no use in caching specs that need init,
228
+ -- or specs that are in start and have a config,
229
+ -- since we'll load the real spec during startup anyway
230
+ state .specs [spec .modname ] = nil
231
+ break
232
+ end
246
233
--- @cast plugin CachedPlugin
247
234
for k , v in pairs (plugin ) do
248
235
if type (v ) == " function" then
0 commit comments