Tom

Results 65 comments of Tom

Polling for the pipe to exist would likely be prohibitively slow. Supplying a polling method to the environment to call at regular intervals might be possible (similar to what's suggested...

I'm thinking I'll add an env variable `LOCAL_LUA_DEBUGGER_FILEPATH` that contains the full path to the script to help environments like this. Then, loading could be as simple as: ```lua package.loaded["lldebugger"]...

FYI: I've added a minimal setup example [in the README](https://github.com/tomblind/local-lua-debugger-vscode#defold)

This is challenging because lua has no built-in event loop. So, there's no straight-forward way to periodically check for incoming breakpoint changes. A few potential options for supporting this: -...

I think this should be do-able and useful. But I won't be able to get to it right away. It's on the roadmap though!

I've attempted to reproduce this, but it seems to work fine for me. 😄 What happens when the debugger 'halts'? Is there an error? Can you set `"verbose": true` in...

Ok, I do get the error using the busted cli. It turns out it's not an error at all: busted is using lua's debug library to get a callstack and...

Yup - lua51 Make sure you **don't** use ```lua if os.getenv("LOCAL_LUA_DEBUGGER_VSCODE") == "1" then require("lldebugger").start() end ``` when running this way. It's not necessary when using the lua interpreter and...

I can't access the doc - can you post it here?