Skip to content

Commit 5134e79

Browse files
committed
feat!: all plugins are now opt. Plugin.opt => Plugin.lazy
1 parent 5e06627 commit 5134e79

File tree

7 files changed

+57
-67
lines changed

7 files changed

+57
-67
lines changed

lua/lazy/core/config.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local M = {}
66
M.defaults = {
77
plugins = "config.plugins",
88
defaults = {
9-
opt = false, -- should plugins default to "opt" or "start"
9+
lazy = false, -- should plugins be loaded at startup?
1010
version = nil,
1111
-- version = "*", -- enable this to try installing the latest stable versions of plugins
1212
},

lua/lazy/core/loader.lua

+11-13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ local M = {}
66
---@type LazyPlugin[]
77
M.loading = {}
88

9+
function M.setup()
10+
local Handler = require("lazy.core.handler")
11+
Handler.setup()
12+
end
13+
914
function M.init_plugins()
1015
Util.track("plugin_init")
1116
for _, plugin in pairs(Config.plugins) do
@@ -14,7 +19,7 @@ function M.init_plugins()
1419
Util.try(plugin.init, "Failed to run `init` for **" .. plugin.name .. "**")
1520
Util.track()
1621
end
17-
if plugin.opt == false then
22+
if plugin.lazy == false then
1823
M.load(plugin, { start = "start" })
1924
end
2025
end
@@ -24,8 +29,7 @@ end
2429
---@class Loader
2530
---@param plugins string|LazyPlugin|string[]|LazyPlugin[]
2631
---@param reason {[string]:string}
27-
---@param opts? {load_start: boolean}
28-
function M.load(plugins, reason, opts)
32+
function M.load(plugins, reason)
2933
---@diagnostic disable-next-line: cast-local-type
3034
plugins = type(plugins) == "string" or plugins.name and { plugins } or plugins
3135
---@cast plugins (string|LazyPlugin)[]
@@ -47,7 +51,7 @@ function M.load(plugins, reason, opts)
4751
table.insert(M.loading, plugin)
4852

4953
Util.track({ plugin = plugin.name, start = reason.start })
50-
M.packadd(plugin, opts and opts.load_start)
54+
M.packadd(plugin)
5155

5256
if plugin.dependencies then
5357
M.load(plugin.dependencies, {})
@@ -67,15 +71,9 @@ function M.load(plugins, reason, opts)
6771
end
6872

6973
---@param plugin LazyPlugin
70-
function M.packadd(plugin, load_start)
71-
if plugin.opt then
72-
vim.cmd.packadd(plugin.name)
73-
M.source_runtime(plugin, "/after/plugin")
74-
elseif load_start then
75-
vim.opt.runtimepath:append(plugin.dir)
76-
M.source_runtime(plugin, "/plugin")
77-
M.source_runtime(plugin, "/after/plugin")
78-
end
74+
function M.packadd(plugin)
75+
vim.cmd.packadd(plugin.name)
76+
M.source_runtime(plugin, "/after/plugin")
7977
end
8078

8179
---@param plugin LazyPlugin

lua/lazy/core/module.lua

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ end
7070

7171
function M.save_cache()
7272
local f = assert(uv.fs_open(cache_path, "w", 438))
73-
vim.loop.fs_ftruncate(f, 0)
7473
for modname, entry in pairs(M.cache) do
7574
if entry.used then
7675
entry.modname = modname

lua/lazy/core/plugin.lua

+27-33
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ local M = {}
3434
---@field dir string
3535
---@field dep? boolean True if this plugin is only in the spec as a dependency
3636
---@field enabled? boolean|(fun():boolean)
37-
---@field opt? boolean
37+
---@field lazy? boolean
3838
---@field dependencies? string[]
3939
---@field _ LazyPluginState
4040

@@ -145,52 +145,46 @@ function Spec:merge(old, new)
145145
end
146146

147147
function M.update_state()
148-
---@type table<"opt"|"start", table<string,FileType>>
149-
local installed = { opt = {}, start = {} }
150-
for opt, packs in pairs(installed) do
151-
Util.ls(Config.options.packpath .. "/" .. opt, function(_, name, type)
152-
if type == "directory" or type == "link" then
153-
packs[name] = type
154-
end
155-
end)
156-
end
148+
---@type table<string,FileType>
149+
local installed = {}
150+
Util.ls(Config.options.packpath .. "/opt", function(_, name, type)
151+
if type == "directory" or type == "link" then
152+
installed[name] = type
153+
end
154+
end)
157155

158156
for _, plugin in pairs(Config.plugins) do
159157
plugin._ = plugin._ or {}
160-
if plugin.opt == nil then
161-
local opt = plugin.dep
162-
or Config.options.defaults.opt
158+
if plugin.lazy == nil then
159+
local lazy = plugin.dep
160+
or Config.options.defaults.lazy
163161
or plugin.module
164162
or plugin.event
165163
or plugin.keys
166164
or plugin.ft
167165
or plugin.cmd
168-
plugin.opt = opt and true or false
166+
plugin.lazy = lazy and true or false
169167
end
170-
local opt = plugin.opt and "opt" or "start"
171-
plugin.dir = Config.options.packpath .. "/" .. opt .. "/" .. plugin.name
168+
plugin.dir = Config.options.packpath .. "/opt/" .. plugin.name
172169
plugin._.is_local = plugin.uri:sub(1, 4) ~= "http" and plugin.uri:sub(1, 3) ~= "git"
173-
plugin._.is_symlink = installed[opt][plugin.name] == "link"
174-
plugin._.installed = installed[opt][plugin.name] ~= nil
170+
plugin._.is_symlink = installed[plugin.name] == "link"
171+
plugin._.installed = installed[plugin.name] ~= nil
175172
if plugin._.is_local == plugin._.is_symlink then
176-
installed[opt][plugin.name] = nil
173+
installed[plugin.name] = nil
177174
end
178175
end
179176

180177
Config.to_clean = {}
181-
for opt, packs in pairs(installed) do
182-
for pack, dir_type in pairs(packs) do
183-
table.insert(Config.to_clean, {
184-
name = pack,
185-
dir = Config.options.packpath .. "/" .. opt .. "/" .. pack,
186-
opt = opt == "opt",
187-
_ = {
188-
installed = true,
189-
is_symlink = dir_type == "link",
190-
is_local = dir_type == "link",
191-
},
192-
})
193-
end
178+
for pack, dir_type in pairs(installed) do
179+
table.insert(Config.to_clean, {
180+
name = pack,
181+
dir = Config.options.packpath .. "/opt/" .. pack,
182+
_ = {
183+
installed = true,
184+
is_symlink = dir_type == "link",
185+
is_local = dir_type == "link",
186+
},
187+
})
194188
end
195189
end
196190

@@ -214,7 +208,7 @@ function M.load()
214208
Util.track("spec")
215209
local spec = M.spec()
216210
if not spec.plugins["lazy.nvim"] then
217-
spec:add({ "folke/lazy.nvim", opt = false })
211+
spec:add({ "folke/lazy.nvim", lazy = false })
218212
end
219213
Config.plugins = spec.plugins
220214
Util.track()

lua/lazy/init.lua

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ function M.setup(opts)
77
local Util = require("lazy.core.util")
88
local Config = require("lazy.core.config")
99
local Loader = require("lazy.core.loader")
10-
local Handler = require("lazy.core.handler")
1110
local Plugin = require("lazy.core.plugin")
1211

1312
Util.track("module", vim.loop.hrtime() - module_start)
@@ -32,8 +31,8 @@ function M.setup(opts)
3231
Util.track()
3332
end
3433

35-
Util.track("handlers")
36-
Handler.setup()
34+
Util.track("loader")
35+
Loader.setup()
3736
Util.track()
3837

3938
local lazy_delta = vim.loop.hrtime() - module_start

lua/lazy/manage/task/plugin.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ local M = {}
66

77
M.build = {
88
skip = function(plugin)
9-
return not (plugin._.dirty and (plugin.opt == false or plugin.build))
9+
return not (plugin._.dirty and plugin.build)
1010
end,
1111
run = function(self)
12-
Loader.load(self.plugin, { task = "run" }, { load_start = true })
12+
Loader.load(self.plugin, { task = "build" })
1313

1414
local build = self.plugin.build
1515
if build then

tests/core/plugin_spec.lua

+14-14
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ end)
3030

3131
describe("plugin spec opt", function()
3232
it("handles dependencies", function()
33-
Config.options.defaults.opt = false
33+
Config.options.defaults.lazy = false
3434
local tests = {
3535
{ "foo/bar", dependencies = { "foo/dep1", "foo/dep2" } },
3636
{ "foo/bar", dependencies = { { "foo/dep1" }, "foo/dep2" } },
@@ -43,53 +43,53 @@ describe("plugin spec opt", function()
4343
assert(vim.tbl_count(spec.plugins) == 3)
4444
assert(#spec.plugins.bar.dependencies == 2)
4545
assert(spec.plugins.bar.dep ~= true)
46-
assert(spec.plugins.bar.opt == false)
46+
assert(spec.plugins.bar.lazy == false)
4747
assert(spec.plugins.dep1.dep == true)
48-
assert(spec.plugins.dep1.opt == true)
48+
assert(spec.plugins.dep1.lazy == true)
4949
assert(spec.plugins.dep2.dep == true)
50-
assert(spec.plugins.dep2.opt == true)
50+
assert(spec.plugins.dep2.lazy == true)
5151
end
5252
end)
5353

5454
it("handles opt from dep", function()
55-
Config.options.defaults.opt = false
55+
Config.options.defaults.lazy = false
5656
local spec = Plugin.Spec.new({ "foo/dep1", { "foo/bar", dependencies = { "foo/dep1", "foo/dep2" } } })
5757
Config.plugins = spec.plugins
5858
Plugin.update_state()
5959
assert.same(3, vim.tbl_count(spec.plugins))
6060
assert(spec.plugins.bar.dep ~= true)
61-
assert(spec.plugins.bar.opt == false)
61+
assert(spec.plugins.bar.lazy == false)
6262
assert(spec.plugins.dep2.dep == true)
63-
assert(spec.plugins.dep2.opt == true)
63+
assert(spec.plugins.dep2.lazy == true)
6464
assert(spec.plugins.dep1.dep ~= true)
65-
assert(spec.plugins.dep1.opt == false)
65+
assert(spec.plugins.dep1.lazy == false)
6666
end)
6767

6868
it("handles defaults opt", function()
6969
do
70-
Config.options.defaults.opt = true
70+
Config.options.defaults.lazy = true
7171
local spec = Plugin.Spec.new({ "foo/bar" })
7272
Config.plugins = spec.plugins
7373
Plugin.update_state()
74-
assert(spec.plugins.bar.opt == true)
74+
assert(spec.plugins.bar.lazy == true)
7575
end
7676
do
77-
Config.options.defaults.opt = false
77+
Config.options.defaults.lazy = false
7878
local spec = Plugin.Spec.new({ "foo/bar" })
7979
Config.plugins = spec.plugins
8080
Plugin.update_state()
81-
assert(spec.plugins.bar.opt == false)
81+
assert(spec.plugins.bar.lazy == false)
8282
end
8383
end)
8484

8585
it("handles opt from dep", function()
86-
Config.options.defaults.opt = false
86+
Config.options.defaults.lazy = false
8787
local spec = Plugin.Spec.new({ "foo/bar", module = "foo" })
8888
Config.plugins = spec.plugins
8989
Plugin.update_state()
9090
assert.same(1, vim.tbl_count(spec.plugins))
9191
assert(spec.plugins.bar.dep ~= true)
92-
assert(spec.plugins.bar.opt == true)
92+
assert(spec.plugins.bar.lazy == true)
9393
end)
9494

9595
it("merges lazy loaders", function()

0 commit comments

Comments
 (0)