Trans.nvim/lua/Trans/window/content.lua

19 lines
255 B
Lua
Raw Normal View History

2023-01-05 16:24:50 +08:00
local M = {}
--[[
content = {
lines = {} ---@type string[]
highlight = {}
}
--]]
---@param contents string[]
M.set = function (win, contents)
vim.validate {
contents = { contents, 'table' },
}
-- TODO
end
return M