I have this launch file and it starts the debugger and stops at breakpoints.
The trouble is that when it stops at the breakpoint it does not show where it stopped and it does not show variables. I tried with VSCode Insiders and the latest stable versions.
I tried with "communication": "pipe" and without pullBreakpointsSupport but they did not affect it, it worked the same way with or without both options.
{
"name": "lj current wine",
"type": "lua-local",
"request": "launch",
"pullBreakpointsSupport": true,
"cwd": "${fileDirname}",
"program": {
"command": "wine64"
},
"args": ["~/nc/bin/bin_win_x64/lj.exe", "-e", "'require([[lldebugger]]).runFile([[${file}]],true)'"]
}
I have this launch file and it starts the debugger and stops at breakpoints.
The trouble is that when it stops at the breakpoint it does not show where it stopped and it does not show variables. I tried with VSCode Insiders and the latest stable versions.
I tried with "communication": "pipe" and without pullBreakpointsSupport but they did not affect it, it worked the same way with or without both options.
{ "name": "lj current wine", "type": "lua-local", "request": "launch", "pullBreakpointsSupport": true, "cwd": "${fileDirname}", "program": { "command": "wine64" }, "args": ["~/nc/bin/bin_win_x64/lj.exe", "-e", "'require([[lldebugger]]).runFile([[${file}]],true)'"] }