formatting fix

This commit is contained in:
pynappo 2024-01-28 03:47:24 -08:00
commit 3ba3240240
No known key found for this signature in database

View file

@ -370,7 +370,8 @@ function Spec:normalize(spec, results)
-- HACK: Uses hashing order to insert the warning after integer keys, but before the rest of LazySpec's string keys -- HACK: Uses hashing order to insert the warning after integer keys, but before the rest of LazySpec's string keys
spec["WARNING:"] = "-- Ignored keys below! --" spec["WARNING:"] = "-- Ignored keys below! --"
self:warn( self:warn(
"This list of specs has extraneous keys - these will not be processed by lazy.nvim as they do not belong to any plugins: " "This list of specs has extraneous keys - "
.. "these will not be processed by lazy.nvim as they do not belong to any plugins:\n"
.. vim.inspect(spec, { depth = 2, process = processor }) .. vim.inspect(spec, { depth = 2, process = processor })
.. "\n" .. "\n"
) )