Skip to content

Commit 9177778

Browse files
committed
fix(plugin): rename weak => optional. Makes more sense :)
1 parent 8cd4a59 commit 9177778

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lua/lazy/core/plugin.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ end
142142

143143
function Spec:fix_disabled()
144144
---@param plugin LazyPlugin
145-
local function all_weak(plugin)
146-
return (not plugin) or (rawget(plugin, "weak") and all_weak(plugin._.super))
145+
local function all_optional(plugin)
146+
return (not plugin) or (rawget(plugin, "optional") and all_optional(plugin._.super))
147147
end
148148

149-
-- handle weak plugins
149+
-- handle optional plugins
150150
for _, plugin in pairs(self.plugins) do
151-
if plugin.weak and all_weak(plugin) then
151+
if plugin.optional and all_optional(plugin) then
152152
self.plugins[plugin.name] = nil
153153
end
154154
end

lua/lazy/types.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
---@field dir string
4848
---@field enabled? boolean|(fun():boolean)
4949
---@field cond? boolean|(fun():boolean)
50-
---@field weak? boolean If set, then this plugin will not be added unless it is added somewhere else
50+
---@field optional? boolean If set, then this plugin will not be added unless it is added somewhere else
5151
---@field lazy? boolean
5252
---@field priority? number Only useful for lazy=false plugins to force loading certain plugins first. Default priority is 50
5353
---@field dev? boolean If set, then link to the respective folder under your ~/projects

0 commit comments

Comments
 (0)