fix(nvim): say stop to the spammy mason error messages

This commit is contained in:
Léana 江 2023-11-17 20:41:46 +01:00 committed by Léana 江
parent cdb42409bf
commit c576c7c6d0
3 changed files with 43 additions and 16 deletions

View file

@ -0,0 +1,13 @@
M = {}
function Map(tbl, f)
local t = {}
for k, v in pairs(tbl) do
t[k] = f(v)
end
return t
end
M.Map = Map
return M