默认调试器

huangapple go评论46阅读模式
英文:

Default debugger

问题

当我在VSC中运行代码时,可能点击了Google Chrome而不是Node.js,我该如何恢复?因为当我点击运行时,它只在Chrome中打开,而不像平常那样给我选项 默认调试器

我正在使用VSC版本:v1.77.3

编辑:我已尝试重新安装VSC。

英文:

when i run in vsc the code i might have cliked google chrome insted of nodejs
how do i revert that? becouse when i click run it just opens in chrome and do NOT give me the options as normal 默认调试器

i am using VSC: v1.77.3

edit: i have tried to re-install the VSC

答案1

得分: 1

VSCode应该在当前工作区/文件夹内创建了一个名为.vscode的目录。在其中,应该有一个名为launch.json的文件。删除launch.json文件,然后再次运行您的代码。

英文:

VSCode should have created a directory called .vscode inside the current workspace/folder. Inside, there should be a file named launch.json. Delete the launch.json file and run your code again.

答案2

得分: -1

我在调试 Visual Studio Code 扩展时遇到了相同的问题。

我错误地选择了第一个选项,而不是第二个选项。

我通过以下方式解决了这个问题:

  1. 通过容易找到的方式创建了 launch.json 文件。

  2. 在编辑器中打开 launch.json 文件,并在底部右侧点击"Add Configuration"按钮。

  3. 在弹出菜单中选择您要使用的调试器。

  4. Visual Studio Code 将在文件中生成一个配置项。如有必要,请编辑该项。

  5. 在左侧面板上点击"run and debug"图标,选择您刚刚设置的配置项名称以开始调试。

英文:

I met the same issue when I debug a vsc extension.

默认调试器

I chose the first option instead of the 2nd option by mistake.

I solved that by the following way:

  1. create launch.json by the way easy to find .
  2. open launch.json in editor, and click the button 'Add Configuration' on the bottom-right.

默认调试器

  1. on the popup menu, select the debugger you want to use

默认调试器

  1. vscode will generator a configuration item in the file. Editor that item if necessary.

默认调试器

  1. Click 'run and debug' icon on left pane, choose the configuration item name you just set to start debugging.

默认调试器

huangapple
  • 本文由 发表于 2023年4月19日 22:47:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/76055899.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定