Skip to content

Commit a6c8f22

Browse files
committed
feat(commands): added highly experimental Lazy reload ... command. See #445
1 parent d8a5829 commit a6c8f22

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

lua/lazy/core/loader.lua

+10-2
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,18 @@ function M.deactivate(plugin)
227227
end
228228

229229
--- reload a plugin
230-
---@param plugin LazyPlugin
230+
---@param plugin LazyPlugin|string
231231
function M.reload(plugin)
232+
if type(plugin) == "string" then
233+
plugin = Config.plugins[plugin]
234+
end
235+
236+
if not plugin then
237+
error("Plugin not found")
238+
end
239+
240+
local load = plugin._.loaded ~= nil
232241
M.deactivate(plugin)
233-
local load = false -- plugin._.loaded ~= nil
234242

235243
-- enable handlers
236244
Handler.enable(plugin)

lua/lazy/view/commands.lua

+6
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ M.commands = {
5353
-- when a command is executed with a bang, wait will be set
5454
require("lazy.core.loader").load(opts.plugins, { cmd = "Lazy load" }, { force = opts.wait })
5555
end,
56+
reload = function(opts)
57+
for _, plugin in pairs(opts.plugins) do
58+
Util.warn("Reloading **" .. plugin.name .. "**")
59+
require("lazy.core.loader").reload(plugin)
60+
end
61+
end,
5662
log = Manage.log,
5763
build = Manage.build,
5864
clean = Manage.clean,

lua/lazy/view/config.lua

+7-1
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,17 @@ M.commands = {
143143
},
144144
build = {
145145
desc = "Rebuild a plugin",
146-
id = 13,
146+
id = 15,
147147
plugins = true,
148148
plugins_required = true,
149149
key_plugin = "gb",
150150
},
151+
reload = {
152+
desc = "Reload a plugin (experimental!!)",
153+
plugins = true,
154+
plugins_required = true,
155+
id = 16,
156+
},
151157
}
152158

153159
return M

0 commit comments

Comments
 (0)