We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f52cf32 commit 43b303bCopy full SHA for 43b303b
lua/lazy/core/plugin.lua
@@ -92,7 +92,7 @@ function Spec:add(plugin, is_dep)
92
93
-- check for plugins that should be local
94
for _, pattern in ipairs(Config.options.dev.patterns) do
95
- if plugin.dev or plugin[1]:find(pattern, 1, true) then
+ if plugin.dev or (plugin[1]:find(pattern, 1, true) and plugin.dev ~= false) then
96
plugin.uri = Config.options.dev.path .. "/" .. plugin.name
97
break
98
end
0 commit comments