lsp stuff

This commit is contained in:
Christian Nieves
2022-12-19 18:55:14 +00:00
parent 63b393c100
commit 38e1a698b1
9 changed files with 196 additions and 186 deletions

View File

@ -22,7 +22,7 @@ function M.dump(o)
local s = '{ '
for k,v in pairs(o) do
if type(k) ~= 'number' then k = '"'..k..'"' end
s = s .. '['..k..'] = ' .. dump(v) .. ','
s = s .. '['..k..'] = ' .. M.dump(v) .. ','
end
return s .. '} '
else