You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have a configuration file for neovim in lua with the content
M = {}
function M.setup()
local nls = require 'nulls-ls'
local sources = { nls.builtins.formatting.stylua }
nls-setup { sources=sources } W: Only has 0 variables, but you set 1 values.
end
return M
I am looking into insight into what this warning means in order to determine if it is legitimate.
The text was updated successfully, but these errors were encountered:
I cannot reproduce it, this line nls-setup { sources=sources } W: Only has 0 variables, but you set 1 values. is invalid Lua code, please provide the valid code.
DIAG_OVER_MAX_ARGS =
'The function takes only {:d} parameters, but you passed {:d}.'
DIAG_OVER_MAX_ARGS =
'Only has {} variables, but you set {} values.'
Describe the bug
I have a configuration file for neovim in lua with the content
I am looking into insight into what this warning means in order to determine if it is legitimate.
The text was updated successfully, but these errors were encountered: