local-lua-debugger-vscode icon indicating copy to clipboard operation
local-lua-debugger-vscode copied to clipboard

Local Lua Debugger for VSCode

Results 37 local-lua-debugger-vscode issues
Sort by recently updated
recently updated
newest added

Example file structure: ``` test/ main.lua ``` All breakpoints work when I set program.file to `./main.lua`, but when I change program.file to `../test/main.lua`, the lua interpreter runs to the end...

bug

I have a very long PATH and CPATH, which I'm copying and pasting into each launch.json configuration (of which I have quite a number). Is there a way to set...

enhancement

Tarantool as database, and application server uses LuaJIT for Lua support in appserver. By default it's compiled without `LUAJIT_ENABLE_LUA52COMPAT` defined thus `rawlen` is inaccessible in majority of a cases. This...

bug

Most of a time I run Tarantool (LuaJIT flavour) in `strict` mode as it's enabled by default in Debug mode. This makes `lldebugger.lua` to generate very vague error messages, like:...

bug

Use Löve framework, I am spawning a new lua thread: ``` gameThread = love.thread.newThread( lf.read("host.lua") ) gameThread:start(unpack(args)) ``` The breakpoints in that second thread are ignored so far. Is that...

enhancement

### Symptoms Setting any breakpoints makes the application (Love2d game) extremely slow (but breakpoints are working). Removing/disabling breakpoints before starting a debug session fixes the slowdown, but breakpoints are ignored....

known limitation

When I put breakpoints in a file with capitalization i can't put breakpoints in. e. g.: `main.lua` ```lua local foo = require "Foo" foo() ``` `Foo.lua` ```lua return function() return...

bug
needs test case

I can't reproduce this bug in another project. I'm using Love2D and wrap the update and draw calls arround a `lldebugger.call`, so that any breakpoints and whatever should get recognized....

bug
needs test case

Just call io.read() method. The entered data will not be processed, the debugger also fails.

known limitation

I am trying to debug lua in dcs. I have been successfully debuggin it using Lua Debugger by devCAT but I wanted to try another one for comparison. I try...

bug