mirror of
https://github.com/zoriya/virtcolumn.nvim.git
synced 2026-08-07 06:37:06 +00:00
11 lines
136 B
Lua
11 lines
136 B
Lua
local M = {}
|
|
|
|
function M.concat_table(t1, t2)
|
|
for _, v in ipairs(t2) do
|
|
t1[#t1 + 1] = v
|
|
end
|
|
return t1
|
|
end
|
|
|
|
return M
|