mirror of https://github.com/folke/lazy.nvim.git
Compare commits
3 Commits
f7fbfbd400
...
d724b64371
Author | SHA1 | Date |
---|---|---|
Erik Lilja | d724b64371 | |
Folke Lemaitre | 60cf258a9a | |
Erik Lilja | 5b9ec99fe4 |
|
@ -106,6 +106,9 @@ function M:add(plugin)
|
|||
|
||||
-- short url / ref
|
||||
if plugin[1] then
|
||||
if type(plugin[1]) ~= "string" then
|
||||
return self.spec:error("Invalid plugin spec " .. vim.inspect(plugin))
|
||||
end
|
||||
local slash = plugin[1]:find("/", 1, true)
|
||||
if slash then
|
||||
local prefix = plugin[1]:sub(1, 4)
|
||||
|
|
|
@ -87,7 +87,7 @@ M.build = {
|
|||
|
||||
M.docs = {
|
||||
skip = function(plugin)
|
||||
return not plugin._.dirty
|
||||
return not plugin._.is_local and not plugin._.dirty
|
||||
end,
|
||||
run = function(self)
|
||||
local docs = self.plugin.dir .. "/doc"
|
||||
|
|
Loading…
Reference in New Issue