fix(ci): yping

This commit is contained in:
Barrett Ruth 2025-11-08 14:00:14 -05:00
parent 09c0881355
commit 3f2b1233ef
2 changed files with 12 additions and 2 deletions

View file

@ -14,8 +14,9 @@ local M = {}
---@param from string
---@param tos string|string[]
local function link(from, tos)
tos = type(tos) == 'string' and { tos } or tos
for _, to in ipairs(tos) do
---@type string[]
local tos_list = type(tos) == 'string' and { tos } or tos
for _, to in ipairs(tos_list) do
vim.api.nvim_set_hl(0, to, { link = from })
end
end