1

我在 VSCode 中有以下任务来构建 C++ 程序。

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build my app",
            "type": "shell",
            "command": "g++",
            "args": [
                "-std=gnu++0x", "-Wall", "-Werror", "-g", "tutorial.cpp"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

但是,每次我运行它时,输出都会在外部终端中打开。我想运行我的构建并在内部终端中查看输出。这可能吗?如果可以,我需要改变什么?

4

1 回答 1

2

集成终端面板的行为是通过presentation任务的属性来控制的。添加以下内容:

"presentation": {
                "reveal": "always",
                "panel": "new"
}

它提供以下选项

  • 揭示
  • 重点
  • 回声
  • 控制板
于 2018-01-17T13:35:23.973 回答