A Lua text user interface debugger
Go to file
2018-05-02 17:15:53 -07:00
ldt-scm-1.rockspec Added license and rockspec. 2018-04-05 17:06:36 -07:00
ldt.lua Minor fixes, including for blank lines in wrapped text. 2018-05-02 17:15:53 -07:00
ldt.moon Minor fixes, including for blank lines in wrapped text. 2018-05-02 17:15:53 -07:00
LICENSE Added license and rockspec. 2018-04-05 17:06:36 -07:00
preview.png Third try. 2018-04-05 17:15:27 -07:00
README.md Updated doc for REPL. 2018-04-05 17:19:28 -07:00

Lua Debugging TUI

This is a text-based user interface command line debugging utility for Lua and Moonscript. It lets you browse the call stack, source code, and local variables right at the moment when your code crashes (or when ldt.breakpoint() is called). Moonscript is fully supported, so the callstack and source code panes will display the correct source for functions written in Moonscript. It looks like this:

preview

Requirements

This library uses Curses via the lcurses library and LPeg.

Usage

To catch all errors inside a block of code, use:

local ldt = require("ldt")
ldt.guard(function()
    -- Your crashing code here
end)

To trigger a breakpoint, just add a call to ldt.breakpoint(). Also, you can use ldt.hijack() to replace error() and assert() with functions that will trigger the debugger. However, this is not recommended for general purpose debugging because Lua errors like trying to index a nil value do not call error(), so the debugger won't get triggered.

Navigation

  • Press 'q' to quit
  • Arrow keys or h/j/k/l for movement within the active pane (yellow border); scroll wheel also works, but only for vertical scrolling. Shift+h/j/k/l moves 10 lines at a time.
  • Press 'c' to select the call stack pane
  • Press 's' to select the source code pane (showing the source code for the file of the function selected in the callstack pane)
  • Press 'o' to open the selected file to the selected line in your system's default editor ($EDITOR)
  • Press 'v' to select the variables pane (showing the variables at the selected level of the callstack)
  • Press 'd' to select the data pane (showing the value of the selected variable)
    • In the data pane, 'l'/right will expand table entries, and 'h'/left will collapse table entries.
  • Press ':' or '>' to type in a command to be run in the current Lua context. The debugger will keep reading until a blank line is reached.
  • Press '?' to type in an expression to be evaluated and printed.