@@ -181,6 +181,78 @@ function M.load(plugins, reason, opts)
181
181
end
182
182
end
183
183
184
+ --- @param plugin LazyPlugin
185
+ function M .deactivate (plugin )
186
+ local main = M .get_main (plugin )
187
+
188
+ if main then
189
+ Util .try (function ()
190
+ local mod = require (main )
191
+ if mod .deactivate then
192
+ mod .deactivate (plugin )
193
+ end
194
+ end , " Failed to deactivate plugin " .. plugin .name )
195
+ end
196
+
197
+ -- execute deactivate when needed
198
+ if plugin ._ .loaded and plugin .deactivate then
199
+ Util .try (function ()
200
+ plugin .deactivate (plugin )
201
+ end , " Failed to deactivate plugin " .. plugin .name )
202
+ end
203
+
204
+ -- disable handlers
205
+ Handler .disable (plugin )
206
+
207
+ -- remove loaded lua modules
208
+ Util .walkmods (plugin .dir .. " /lua" , function (modname )
209
+ package.loaded [modname ] = nil
210
+ package.preload [modname ] = nil
211
+ end )
212
+
213
+ -- clear vim.g.loaded_ for plugins
214
+ Util .ls (plugin .dir .. " /plugin" , function (_ , name , type )
215
+ if type == " file" then
216
+ vim .g [" loaded_" .. name :gsub (" %..*" , " " )] = nil
217
+ end
218
+ end )
219
+ -- set as not loaded
220
+ plugin ._ .loaded = nil
221
+ end
222
+
223
+ --- reload a plugin
224
+ --- @param plugin LazyPlugin
225
+ function M .reload (plugin )
226
+ M .deactivate (plugin )
227
+ local load = false -- plugin._.loaded ~= nil
228
+
229
+ -- enable handlers
230
+ Handler .enable (plugin )
231
+
232
+ -- run init
233
+ if plugin .init then
234
+ Util .try (function ()
235
+ plugin .init (plugin )
236
+ end , " Failed to run `init` for **" .. plugin .name .. " **" )
237
+ end
238
+
239
+ -- if this is a start plugin, load it now
240
+ if plugin .lazy == false then
241
+ load = true
242
+ end
243
+
244
+ for _ , event in ipairs (plugin .event or {}) do
245
+ if event == " VimEnter" or event == " UIEnter" or event :find (" VeryLazy" ) then
246
+ load = true
247
+ break
248
+ end
249
+ end
250
+
251
+ if load then
252
+ M .load (plugin , { start = " reload" })
253
+ end
254
+ end
255
+
184
256
--- @param plugin LazyPlugin
185
257
--- @param reason { [string] : string }
186
258
--- @param opts ? { force : boolean } when force is true , we skip the cond check
@@ -242,22 +314,11 @@ function M.config(plugin)
242
314
plugin .config (plugin , opts )
243
315
end
244
316
else
245
- local normname = Util .normname (plugin .name )
246
- --- @type string[]
247
- local mods = {}
248
- for _ , modname in ipairs (Cache .get_topmods (plugin .dir )) do
249
- mods [# mods + 1 ] = modname
250
- local modnorm = Util .normname (modname )
251
- -- if we found an exact match, then use that
252
- if modnorm == normname then
253
- mods = { modname }
254
- break
255
- end
256
- end
257
- if # mods == 1 then
317
+ local main = M .get_main (plugin )
318
+ if main then
258
319
fn = function ()
259
320
local opts = Plugin .values (plugin , " opts" , false )
260
- require (mods [ 1 ] ).setup (opts )
321
+ require (main ).setup (opts )
261
322
end
262
323
else
263
324
return Util .error (
@@ -268,6 +329,26 @@ function M.config(plugin)
268
329
Util .try (fn , " Failed to run `config` for " .. plugin .name )
269
330
end
270
331
332
+ --- @param plugin LazyPlugin
333
+ function M .get_main (plugin )
334
+ if plugin .main then
335
+ return plugin .main
336
+ end
337
+ local normname = Util .normname (plugin .name )
338
+ --- @type string[]
339
+ local mods = {}
340
+ for _ , modname in ipairs (Cache .get_topmods (plugin .dir )) do
341
+ mods [# mods + 1 ] = modname
342
+ local modnorm = Util .normname (modname )
343
+ -- if we found an exact match, then use that
344
+ if modnorm == normname then
345
+ mods = { modname }
346
+ break
347
+ end
348
+ end
349
+ return # mods == 1 and mods [1 ] or nil
350
+ end
351
+
271
352
--- @param path string
272
353
function M .packadd (path )
273
354
M .source_runtime (path , " plugin" )
0 commit comments