We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57bea32 commit a939243Copy full SHA for a939243
lua/lazy/manage/checker.lua
@@ -16,7 +16,7 @@ end
16
17
function M.fast_check()
18
for _, plugin in pairs(Config.plugins) do
19
- if plugin._.installed then
+ if not plugin.pin and plugin._.installed then
20
plugin._.has_updates = nil
21
local info = Git.info(plugin.dir)
22
local ok, target = pcall(Git.get_target, plugin)
lua/lazy/manage/task/git.lua
@@ -8,6 +8,9 @@ local M = {}
8
M.log = {
9
---@param opts {updated?:boolean, check?: boolean}
10
skip = function(plugin, opts)
11
+ if opts.check and plugin.pin then
12
+ return true
13
+ end
14
if opts.updated and not (plugin._.updated and plugin._.updated.from ~= plugin._.updated.to) then
15
return true
end
0 commit comments