Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tools/tb2err: Trim trailing whitespace | Kim Alvefur | 2023-04-08 | 1 | -1/+1 |
| | |||||
* | tools/tb2err: Rewrite prosody-modules paths to ../modules | Kim Alvefur | 2023-04-08 | 1 | -0/+2 |
| | | | | This assumes you have community modules in ../modules as I do | ||||
* | tools/tb2err: Add some example usage in a comment | Kim Alvefur | 2023-04-08 | 1 | -0/+2 |
| | |||||
* | tools/tb2err: Drop use of lua-any since it should run fine on any Lua | Kim Alvefur | 2023-04-08 | 1 | -2/+1 |
| | | | | Dependencies--; \o/ | ||||
* | tools/tb2err: Formats Lua traceback in errors.err format | Kim Alvefur | 2020-10-28 | 1 | -0/+21 |
Manually opening to the files and line numbers from a Lua traceback is tedious. This tool converts tracebacks into a format that many compilers and such tools use, which is also compatible with Vim (and possibly other editors). Thus if someone sends you a pastebin link with a traceback, a command like the following gets you right to the relevant lines: curl paste.example/abc123.txt | tb2err > errors.err; vim -q |