gpt4 book ai didi

c++ - g++ 自定义任务在外部终端而不是 vs 代码内部终端中打开

转载 作者:行者123 更新时间:2023-11-30 03:26:26 25 4
gpt4 key购买 nike

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

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

最佳答案

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

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

它提供 following options :

  • 揭示
  • 专注
  • 回声
  • 面板

关于c++ - g++ 自定义任务在外部终端而不是 vs 代码内部终端中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48302130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com