Sewbacca

Results 52 comments of Sewbacca

Glad to hear, that you are doing well, and thanks for the update! Life happens, so it's perfectly understandable to not have time for your other projects. Honestly, this is...

> I hope @tomblind won't be mad, but I really need all the PRs in your extension and decided to do so in my [fork](https://github.com/Ismoh/local-lua-debugger-vscode), until this repo is maintained...

> > Thank you for your efforts in maintaining the PRs. I genuinely appreciate it, especially considering how frequently I rely on this extension. Would it be feasible for you...

Yeah sure. You can select the lua interpreter version in the launch.json ``` { "name": "Launch File", "type": "lua-local", "request": "launch", "program": { "file": "${file}", "lua": "lua" }, } ```...

> I think class references were becoming more strict. Is somewhere documented that fields, created via a table constructor are less mutable then fields created via the assignment operator?

Thanks for pointing it out. The injection warning likely is cause by some of the new changes. However I still think this warning is falsly generated: Both fields are defined...

There seems to be a few issues with the new warning, now a warning is falsly not generated: ```lua ---@class AnotherClass local cl = {} ---@type AnotherClass local o =...

Argh, I'm too late to answer in time, sorry about that. I was busy testing stuff locally: First things first, this PR addresses not only support for spaces in arguments,...

I revisited the test suite and found out that for some odd reason, I ran the tests with an outdated version of luarocks (3.9.0). I was pretty sure my previous...

The actual paths don't actually contain `~`. Sorry I really should have noted that, when I posted these logs. I have replaced any occurence of `C:/Users/` with `~`, for personal...