From 0538b869be2af79f19d21dfe51d8a24d4fe7eb61 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 19 Jan 2019 19:38:12 -0800 Subject: Added error line column to error messages. --- pretty_errors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pretty_errors.lua') diff --git a/pretty_errors.lua b/pretty_errors.lua index afb1793..addb42b 100644 --- a/pretty_errors.lua +++ b/pretty_errors.lua @@ -25,7 +25,7 @@ format_error = function(err) else pointer = (" "):rep(err_linepos + #fmt_str:format(0) - 1) .. "⬆" end - local err_msg = "\027[33;41;1m" .. tostring(err.title or "Error") .. " at " .. tostring(err.filename or '???') .. ":" .. tostring(err_linenum) .. "\027[0m" + local err_msg = "\027[33;41;1m" .. tostring(err.title or "Error") .. " at " .. tostring(err.filename or '???') .. ":" .. tostring(err_linenum) .. "," .. tostring(err_linepos) .. "\027[0m" for i = err_linenum - context, err_linenum - 1 do do local line = string2.line(err.source, i) -- cgit v1.2.3