try to fix snippets

This commit is contained in:
Barrett Ruth 2025-09-15 12:43:24 -04:00
parent 20b058f034
commit 35008bea32
4 changed files with 100 additions and 5 deletions

View file

@ -13,7 +13,10 @@ M.filetype_to_language = {
py3 = M.PYTHON,
}
---@type string[]
M.all = { M.CPP, M.PYTHON }
---@type table<string, string>
M.canonical_filetypes = {
[M.CPP] = "cpp",
[M.PYTHON] = "python",
}
return M