File tree 3 files changed +23
-3
lines changed
3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -227,10 +227,18 @@ function M.deactivate(plugin)
227
227
end
228
228
229
229
--- reload a plugin
230
- --- @param plugin LazyPlugin
230
+ --- @param plugin LazyPlugin | string
231
231
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
232
241
M .deactivate (plugin )
233
- local load = false -- plugin._.loaded ~= nil
234
242
235
243
-- enable handlers
236
244
Handler .enable (plugin )
Original file line number Diff line number Diff line change @@ -53,6 +53,12 @@ M.commands = {
53
53
-- when a command is executed with a bang, wait will be set
54
54
require (" lazy.core.loader" ).load (opts .plugins , { cmd = " Lazy load" }, { force = opts .wait })
55
55
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 ,
56
62
log = Manage .log ,
57
63
build = Manage .build ,
58
64
clean = Manage .clean ,
Original file line number Diff line number Diff line change @@ -143,11 +143,17 @@ M.commands = {
143
143
},
144
144
build = {
145
145
desc = " Rebuild a plugin" ,
146
- id = 13 ,
146
+ id = 15 ,
147
147
plugins = true ,
148
148
plugins_required = true ,
149
149
key_plugin = " gb" ,
150
150
},
151
+ reload = {
152
+ desc = " Reload a plugin (experimental!!)" ,
153
+ plugins = true ,
154
+ plugins_required = true ,
155
+ id = 16 ,
156
+ },
151
157
}
152
158
153
159
return M
You can’t perform that action at this time.
0 commit comments