fix(wezterm): use local table dump

This commit is contained in:
Price Hiller 2022-07-09 14:16:33 -05:00
parent f3e5818a47
commit a5e019f597

View File

@ -13,7 +13,7 @@ function M.Table.dump(o)
if type(k) ~= "number" then
k = '"' .. k .. '"'
end
s = s .. " [" .. k .. "] = " .. dump(v) .. ",\n"
s = s .. " [" .. k .. "] = " .. M.Table.dump(v) .. ",\n"
end
return s .. "} "
else