Sewbacca
Sewbacca
How so? The modules are loaded via `require()`. Do you suggest to create my own `require()` function? And if so, how should I go about writing it? How is the...
My application also runs much, MUCH slower while debugging. As it turns out, half of the time, it is running the debugger and not my application. As op I am...
Conditional breakpoints are quite usefull, especially if code is executed frequently. They are much easier to setup than change the code (e.g. an if) and restart the debugger with a...
For anyone interested: I created a sample based profiler for lua over [here](https://github.com/sewbacca/LFSampler).
Maybe i was encountering this issue in #55.
Weird, now I seem not to be able to reproduce it either. The only thing that i notice if i rename it to `foo.lua`, set a breakpoint and run it...
I'VE GOT A ***** TEST CASE!!! Sorry, but this bug is annoying. So: Create a Project, create a new file, called `Myfile.lua`. Delete `Myfile.lua` and create a new file called...
> Does this still occur, or did deleting `%appdata%\Code\User\workspaceStorage` solve the issue? It did happen, after I deleted it, again. However after the second time, it didn't occur again.
I'm trying to avoid annotation duplication. For instance this works and adds those fields in the class itself, rather than in just the instance inside new: ```lua ---@class functional local...
Are there any plans to address this issue? I'm a bit annoyed that I can't autorequire many of my modules, which are setup in this way (`myModule/init.lua`). That's why I...