我Perl
今天刚刚开始安装ActivePerl 5.24.1
并且一切顺利.我能够testPerl.pl
用简单的print
命令创建我的测试程序并运行它console
.
现在我想用Visual Studio代码运行我Perl Script
等与开盘项目文件夹[testPerl.pl位置] Visual Studio代码,并试图调试代码.我已经Perl-Debug
为编辑器安装了扩展程序,当我点击F5时,Visual Studio要求我选择环境,我选择了Perl Debug选项,它实际上launch.json
为我创建了文件,内容如下.
{ "version": "0.0.2", "configurations": [ { "type": "perl", "request": "launch", "exec": "perl", "name": "Perl-Debug", "root": "${workspaceRoot}/", "program": "${workspaceRoot}/${command.AskForProgramName}", "inc": [], "stopOnEntry": true } ] }
我保留了默认值,当我再次点击F5时,它向我询问了一个默认值的命令test.pl
.因为${command.AskForProgramName}
,我认为.我testPerl.pl
在命令中输入了我的文件名,但后来没有任何反应.它print
在控制台中没有任何启动和结束.
有人可以让我知道如何实际配置这个launch.json
或有没有其他方式我需要这样做?