mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
feat: README.md files are now automagically added to help. By default only when no doc/ exists
This commit is contained in:
parent
27178b5e67
commit
70ca110ca1
3 changed files with 62 additions and 1 deletions
|
@ -65,7 +65,9 @@ function M.install(opts)
|
|||
plugins = function(plugin)
|
||||
return plugin.url and not plugin._.installed
|
||||
end,
|
||||
}, opts)
|
||||
}, opts):wait(function()
|
||||
require("lazy.help").update()
|
||||
end)
|
||||
end
|
||||
|
||||
---@param opts? ManagerOpts|{lockfile?:boolean}
|
||||
|
@ -86,6 +88,7 @@ function M.update(opts)
|
|||
end,
|
||||
}, opts):wait(function()
|
||||
require("lazy.manage.lock").update()
|
||||
require("lazy.help").update()
|
||||
end)
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue