g ++自定义任务在vs代码内部终端

时间:2018-01-17 13:18:15

标签: c++ visual-studio-code vscode-tasks

我在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
            }
        }
    ]
}

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

1 个答案:

答案 0 :(得分:2)

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

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

它提供了following options

  • 揭示
  • 焦点
  • 回波
  • 面板