英文:
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 扩展时遇到了相同的问题。
我错误地选择了第一个选项,而不是第二个选项。
我通过以下方式解决了这个问题:
-
通过容易找到的方式创建了 launch.json 文件。
-
在编辑器中打开 launch.json 文件,并在底部右侧点击"Add Configuration"按钮。
-
在弹出菜单中选择您要使用的调试器。
-
Visual Studio Code 将在文件中生成一个配置项。如有必要,请编辑该项。
-
在左侧面板上点击"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:
- create launch.json by the way easy to find .
- open launch.json in editor, and click the button 'Add Configuration' on the bottom-right.
- on the popup menu, select the debugger you want to use
- vscode will generator a configuration item in the file. Editor that item if necessary.
- Click 'run and debug' icon on left pane, choose the configuration item name you just set to start debugging.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论