lua-debug
lua-debug copied to clipboard
Lua Debug Adapter for Visual Studio Code
The debug seems to be ignoring what I set for path/cpath ```json { "version": "0.2.0", "configurations": [ { "type": "lua", "request": "launch", "name": "Debug", "program": "${workspaceFolder}/lua_modules/lib/luarocks/rocks-5.1/thor/dev-1/bin/thor.lua", "path": "${workspaceFolder}/lua_modules/share/lua/5.1/?.lua;${workspaceFolder}/lua_modules/share/lua/5.1/?/init.lua", "cpath": "${workspaceFolder}/lua_modules/lib/lua/5.1/?.so",...
Thanks for this debugger. It works well. How can I use it with luasql.mysql?
The debugger doesn't seem to start with 2.0.10, but it works with 2.0.9. For 2.0.10, nothing happens when starting a debug session. VS Code just shows that "something is loading"...
I am trying to attach a debugger to a game in Steam. It keeps failing to run debugger.lua because every time your code uses io it throws an error. It...
在windows环境下使用debug功能,使用内置终端,打印中文出现乱码,而且这个编码格式已经设置了utf8,但是没有效果 { "lua.debug.settings.luaVersion": "lua51", "lua.debug.settings.sourceCoding": "utf8", "Lua.runtime.fileEncoding": "utf8", } 显示还是ANSI的编码 
I accidently installed and remove luamake and lua-debug (maybe in wront directories because I didn't make to complete the installation and I initially installed the repos at ~/Downloads/ and then...
v2.0.4 默认在debugconsole 会有输出 升级到最新v2.0.5版本debugconsole 没有输出,断点也没有生效 lanuch.json ``` { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387...
Hi, here is a tiny annoying problem. Running environment: [win10 x64] [vscode v1.88.1] [Lua Debug v2.0.5] [ Lua v5.4.6] If set the breakpoint first then start to debug, everything is...
Hello, I am trying to make it so when debugging with LuaJIT the JIT compiler is turned off, along with other optimisations, this is my launch file ```json { "configurations":...