Truncating super long error messages.

This commit is contained in:
Bruce Hill 2018-12-15 15:15:03 -08:00
parent 17fc0a0e38
commit 79881757fb
2 changed files with 7 additions and 0 deletions

View File

@ -58,6 +58,10 @@ format_error = function(err)
end
end
end
if i > err_linenum + 1 + 5 then
err_msg = err_msg .. "\n ...\n"
break
end
end
end
local box_width = 70

View File

@ -45,6 +45,9 @@ format_error = (err)->
err_msg ..= "\n\027[2m#{fmt_str\format(i)}\027[0;41;30m#{during}\027[0m#{after}"
else
err_msg ..= "\n\027[2m#{fmt_str\format(i)}\027[0;41;30m#{line}\027[0m"
if i > err_linenum+1 + 5
err_msg ..= "\n ...\n"
break
box_width = 70
err_text = "\027[47;31;1m#{string2.wrap(" "..err.error, box_width, 16)\gsub("\n", "\n\027[47;31;1m ")}"