Neovim warning:
vim.tbl_flatten is deprecated. Run ":checkhealth vim.deprecated" for more information
Replace this line
|
return vim.api.nvim_command(table.concat(vim.tbl_flatten {command, ...}, " ")) |
with
return vim.api.nvim_command(table.concat(vim.iter({1, 2, 3, {2, 3, 10}}):flatten():totable(), " "))
Neovim warning:
Replace this line
nvim-colorizer.lua/lua/colorizer/nvim.lua
Line 96 in a065833
with