Skip to content

Commit 57a3960

Browse files
committed
feat: deactivate WIP
1 parent 49b43de commit 57a3960

File tree

2 files changed

+97
-14
lines changed

2 files changed

+97
-14
lines changed

lua/lazy/core/loader.lua

+95-14
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,78 @@ function M.load(plugins, reason, opts)
181181
end
182182
end
183183

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+
184256
---@param plugin LazyPlugin
185257
---@param reason {[string]:string}
186258
---@param opts? {force:boolean} when force is true, we skip the cond check
@@ -242,22 +314,11 @@ function M.config(plugin)
242314
plugin.config(plugin, opts)
243315
end
244316
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
258319
fn = function()
259320
local opts = Plugin.values(plugin, "opts", false)
260-
require(mods[1]).setup(opts)
321+
require(main).setup(opts)
261322
end
262323
else
263324
return Util.error(
@@ -268,6 +329,26 @@ function M.config(plugin)
268329
Util.try(fn, "Failed to run `config` for " .. plugin.name)
269330
end
270331

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+
271352
---@param path string
272353
function M.packadd(path)
273354
M.source_runtime(path, "plugin")

lua/lazy/types.lua

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
---@class LazyPluginHooks
2121
---@field init? fun(self:LazyPlugin) Will always be run
22+
---@field deactivate? fun(self:LazyPlugin) Unload/Stop a plugin
2223
---@field config? fun(self:LazyPlugin, opts:table)|true Will be executed when loading the plugin
2324
---@field build? string|fun(self:LazyPlugin)|(string|fun(self:LazyPlugin))[]
2425
---@field opts? PluginOpts
@@ -40,6 +41,7 @@
4041
---@class LazyPluginBase
4142
---@field [1] string?
4243
---@field name string display name and name used for plugin config files
44+
---@field main? string Entry module that has setup & deactivate
4345
---@field url string?
4446
---@field dir string
4547
---@field enabled? boolean|(fun():boolean)

0 commit comments

Comments
 (0)