mirror of
https://github.com/zoriya/virtcolumn.nvim.git
synced 2026-08-07 06:37:06 +00:00
Version 1.5.0
* Fix table concat bug * Add `setup_buffer`
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
local M = {}
|
||||
|
||||
function M.concat_table(t1, t2)
|
||||
for _, v in ipairs(t2) do
|
||||
t1[#t1 + 1] = v
|
||||
end
|
||||
return t1
|
||||
end
|
||||
|
||||
return M
|
||||
Reference in New Issue
Block a user