parent
e76f8c2b40
commit
49baebfe73
|
@ -1,7 +1,7 @@
|
|||
debugger.lua
|
||||
=
|
||||
|
||||
A simple, embedabble CLI debugger for Lua 5.1, Lua 5.2 and LuaJIT 2.0.
|
||||
A simple, embedabble CLI debugger for Lua 5.1, Lua 5.2 and LuaJIT 2.0. Licensed under the very permissable MIT license.
|
||||
|
||||
Have you ever been working on an embedded Lua project and found yourself in need of a debugger? (I actually have never done a project in Lua, but I'm warming up to the idea now that I have a debugger I like...) The lua-users wiki lists a [number of them](http://lua-users.org/wiki/DebuggingLuaCode). While clidebugger was closest to what I wanted, I ran into several compatibility issues. The rest of them are very large libraries that require you to integrate socket libraries or other native libraries and such into your program. I just wanted something simple that would work through stdin/out. I also decided that it sounded fun to try and make my own.
|
||||
|
||||
|
@ -96,4 +96,4 @@ Future Plans:
|
|||
debugger.lua basically does everything I want now, although I have some ideas for enhancements.
|
||||
|
||||
- Custom formatters: The built in pretty-printing works fine for most things. It would be nice to be able to register custom formatting functions though.
|
||||
- Readline support for LuaJIT: Line editing and history would be pretty nice to have. With LuaJIT it might be easy using the FFI.
|
||||
- Readline support for LuaJIT: Line editing and history would be pretty nice to have. With LuaJIT it might be easy using the FFI.
|
||||
|
|
Loading…
Reference in New Issue