fix health and hl groups

This commit is contained in:
Barrett Ruth 2025-10-03 09:34:25 -04:00
parent d35ed0450b
commit 5991670ef2
4 changed files with 22 additions and 13 deletions

View file

@ -93,7 +93,7 @@ local function parse_and_strip_time_v(output)
for line in tail:gmatch('[^\n]+') do
local kb = line:match('Maximum resident set size %(kbytes%):%s*(%d+)')
if kb then
peak_kb = tonumber(kb)
peak_kb = tonumber(kb) or 0
end
end