Update init.lua

This commit is contained in:
Abouzar Parvan 2021-07-25 05:46:09 +00:00 committed by GitHub
parent dfadb7e1c3
commit ceb018d45d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,9 +35,9 @@ local function r_inspect_settings(structure, limit, separator)
separator = separator:gsub("%.%[", "%[")
if type(structure) == "function" then
-- don't print functions
io.write("-- O", separator:sub(2), " = function ()\n")
io.write("-- lvim", separator:sub(2), " = function ()\n")
else
io.write("O", separator:sub(2), " = ", tostring(structure), "\n")
io.write("lvim", separator:sub(2), " = ", tostring(structure), "\n")
end
return limit - 1
end