Skip to content

Commit 0cbd91d

Browse files
committed
feat(spec): you can now override specs using only the plugin name instead of the short url
1 parent efe72d9 commit 0cbd91d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/lazy/core/plugin.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ function Spec:add(plugin, results, is_dep)
6464
return plugin
6565
end
6666

67-
if not plugin.url and plugin[1] then
67+
local is_ref = plugin[1] and not plugin[1]:find("/", 1, true)
68+
69+
if not plugin.url and not is_ref and plugin[1] then
6870
local prefix = plugin[1]:sub(1, 4)
6971
if prefix == "http" or prefix == "git@" then
7072
plugin.url = plugin[1]
@@ -95,6 +97,8 @@ function Spec:add(plugin, results, is_dep)
9597
-- remote plugin
9698
plugin.dir = Config.options.root .. "/" .. plugin.name
9799
end
100+
elseif is_ref then
101+
plugin.name = plugin[1]
98102
else
99103
self:error("Invalid plugin spec " .. vim.inspect(plugin))
100104
return

0 commit comments

Comments
 (0)