fix(ci): update typing

This commit is contained in:
Barrett Ruth 2025-09-14 00:11:09 -05:00
parent 8394065169
commit c1c1194945
4 changed files with 83 additions and 85 deletions

View file

@ -60,21 +60,20 @@ local function check_luasnip()
end
local function check_config()
local cp = require("cp")
vim.health.ok("Plugin ready")
if vim.g.cp and vim.g.cp.platform then
local info = vim.g.cp.platform
if vim.g.cp.contest_id then
info = info .. " " .. vim.g.cp.contest_id
if vim.g.cp.problem_id then
info = info .. " " .. vim.g.cp.problem_id
end
if vim.g.cp and vim.g.cp.platform then
local info = vim.g.cp.platform
if vim.g.cp.contest_id then
info = info .. " " .. vim.g.cp.contest_id
if vim.g.cp.problem_id then
info = info .. " " .. vim.g.cp.problem_id
end
vim.health.info("Current context: " .. info)
else
vim.health.info("No contest context set")
end
vim.health.info("Current context: " .. info)
else
vim.health.info("No contest context set")
end
end
function M.check()