VSCodeLuaDebug icon indicating copy to clipboard operation
VSCodeLuaDebug copied to clipboard

Visual Studio Code debugger extension for Lua 5.1/5.2/5.3

Results 19 VSCodeLuaDebug issues
Sort by recently updated
recently updated
newest added

Luau: https://github.com/luau-lang/luau A fast, small, safe, gradually typed embeddable scripting language derived from Lua

Here's the op_halt patch updated for Lua 5.4.4. It was tested successfully with vscode-debuggee.lua. We could confirm the performance gain and that breakpoints and stepping through the code is working...

`contributes.debuggers.enableBreakpointsFor` is no longer supported in the package manifest. The replacement is `contributes.breakpoints`. See https://github.com/xdebug/vscode-php-debug/issues/424#issue-740848506, for more info. Without this change, VS Code won't set breakpoints.

I can't start the "wait" debug configuration. It looks as if whatever listening process is launched by that configuration quits immediately and silently. The debug toolbar appears for a split...

I cloned your repo and when releasing my own Gideros centric version my users kept getting "access denied" errors when launching their projects, which I have fixed in my own...

Please add the keyword "Gideros" to your extension so that it might more easily be discovered when searching for extensions for... Gideros. Fantastic extension BTW :)

I have a launch.json file like this: ``` "version": "0.2.0", "configurations": [ { "name": "launch-lua", "type": "lua", "request": "launch", "workingDirectory": "${workspaceRoot}", "sourceBasePath": "${workspaceRoot}", "executable": "${workspaceRoot}/Engine_d.exe", "arguments": "-script \\\"${file}\\\"", "listenPublicly": false,...

vs code support conditional breakpoint(https://github.com/microsoft/vscode-debugadapter-node/blob/master/protocol/src/debugProtocol.ts). So when I debug my projects, I try to add conditional breakpoint.

This plugin is very pretty, Thank for author. I use it to learn lua and cocos2dx. But when i debug cocos2dx code, i fail. There are my steps. (1) download...