fix(colorizer): replaced deprecated function tbl_flatten

This commit is contained in:
NiklasV1 2025-05-10 13:21:36 +02:00
parent bfc3dc559b
commit a299361ac9

View file

@ -96,7 +96,7 @@ return setmetatable({
end
local command = k:gsub("_$", "!")
local f = function(...)
return vim.api.nvim_command(table.concat(vim.tbl_flatten {command, ...}, " "))
return vim.api.nvim_command(table.concat(utils.flatten_table({command, ...}), " "))
end
mt[k] = f
return f