carousel.love/0102-send_errors_to_output

9 lines
490 B
Plaintext
Raw Normal View History

send_errors_to_output = function(err)
local callstack = debug.traceback('', 3)
local error_with_callstack = cleaned_up_frame(tostring(err))..'\n'..cleaned_up_callstack(callstack)
2023-12-16 00:18:42 +00:00
table.insert(Current_pane.output_editor_state.lines, {data=''})
Current_pane.output_editor_state.cursor1 = {line=#Current_pane.output_editor_state.lines, pos=1}
Text.redraw_all(Current_pane.output_editor_state)
2023-12-16 00:18:42 +00:00
Text.insert_text(Current_pane.output_editor_state, error_with_callstack)
clear_handlers()
end