File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -142,13 +142,13 @@ end
142
142
143
143
function Spec :fix_disabled ()
144
144
--- @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 ))
147
147
end
148
148
149
- -- handle weak plugins
149
+ -- handle optional plugins
150
150
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
152
152
self .plugins [plugin .name ] = nil
153
153
end
154
154
end
Original file line number Diff line number Diff line change 47
47
--- @field dir string
48
48
--- @field enabled ? boolean | (fun (): boolean )
49
49
--- @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
51
51
--- @field lazy ? boolean
52
52
--- @field priority ? number Only useful for lazy =false plugins to force loading certain plugins first. Default priority is 50
53
53
--- @field dev ? boolean If set , then link to the respective folder under your ~/projects
You can’t perform that action at this time.
0 commit comments