feat: panel formatting

This commit is contained in:
Barrett Ruth 2025-09-16 00:12:56 -04:00
parent dfcb377b98
commit 087c4ffa43
7 changed files with 89 additions and 83 deletions

View file

@ -21,4 +21,23 @@ M.canonical_filetypes = {
[M.PYTHON] = "python",
}
---@type table<number, string>
M.signal_codes = {
[128] = "SIGILL",
[130] = "SIGINT",
[131] = "SIGQUIT",
[132] = "SIGILL",
[133] = "SIGTRAP",
[134] = "SIGABRT",
[135] = "SIGBUS",
[136] = "SIGFPE",
[137] = "SIGKILL",
[138] = "SIGUSR1",
[139] = "SIGSEGV",
[140] = "SIGUSR2",
[141] = "SIGPIPE",
[142] = "SIGALRM",
[143] = "SIGTERM",
}
return M