Trans.nvim/lua/Trans/util/debug.lua

33 lines
660 B
Lua
Raw Normal View History

2023-01-05 16:24:50 +08:00
local M = {}
-- INFO : get loaded debug conf
2023-01-09 23:20:56 +08:00
local type_check = true
2023-01-05 16:24:50 +08:00
M.type_check = function (types)
2023-01-09 23:20:56 +08:00
if type_check then
2023-01-05 16:24:50 +08:00
vim.validate(types)
end
end
2023-01-09 23:20:56 +08:00
2023-01-05 16:24:50 +08:00
-- local function dedent(lines)
-- local ind_size = math.huge
-- for i, _ in ipairs(lines) do
-- local i1, i2 = lines[i]:find("^%s*[^%s]")
-- if i1 and i2 < ind_size then
-- ind_size = i2
-- end
-- end
-- for i, _ in ipairs(lines) do
-- lines[i] = lines[i]:sub(ind_size, -1)
-- end
-- end
--
-- function M.dedent(s)
-- local lst = vim.split(s, "\n")
-- dedent(lst)
-- return table.concat(lst, "\n")
-- end
return M