Make linter happy

This commit is contained in:
ViViDboarder 2022-01-06 21:15:06 -08:00
parent 06b29db645
commit 5b56491ea7
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ end
-- Returns whether or not packer plugin is loaded
function M.is_plugin_loaded(name)
return _G["packer_plugins"] and packer_plugins[name] and packer_plugins[name].loaded
return _G["packer_plugins"] and _G["packer_plugins"][name] and _G["packer_plugins"][name].loaded
end
-- Try to require something and perform some action if it was found