You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2021. It is now read-only.
It actually works to set a breakpoint via vscode and to use "Continue (F5)", too.
I guess this is a perl version issue (perl 5.8.8 with perl5db.pl version 1.28), but I specifically needed to debug in this environment (still can do it now via the console, so thank you for this extension already).
Is there something one can do to allow the "real" interaction between the editor and the debugger with this environment?
Using the following configuration I've got to a "working" state (the debugger is called and I can interact with it - but only in the debug console).
{ "version": "0.2.0", "configurations": [ { "type": "perl", "request": "launch", "name": "Perl-Debug local", "console": "integratedTerminal", "program": "${workspaceFolder}/${relativeFile}", "exec": "D:\\dev\\MinGW\\msys\\1.0\\bin\\perl.exe", "execArgs": [], "root": "${workspaceRoot}/", "inc": [], "args": ["$sampleInput"], "env": {}, "debugRaw": true, "debugLog": false, "stopOnEntry": true, "sessions": "single" } ] }It actually works to set a breakpoint via vscode and to use "Continue (F5)", too.
I guess this is a perl version issue (perl 5.8.8 with perl5db.pl version 1.28), but I specifically needed to debug in this environment (still can do it now via the console, so thank you for this extension already).
Is there something one can do to allow the "real" interaction between the editor and the debugger with this environment?