gpt4 book ai didi

windows - VS Code - Cygwin 作为集成终端

转载 作者:IT王子 更新时间:2023-10-29 01:20:31 51 4
gpt4 key购买 nike

我想在我的 Windows 笔记本电脑上使用 Cygwin 作为 Visual Studio Code 的集成终端(因为这会让我使用 Linux 终端命令 git 和 G++ 等)但是当我为 设置值时"terminal.integrated.shell.windows": 到 Cygwin 应用程序 (.exe) 的地址,然后它会打开一个新的 Cygwin 终端,而不是留在 VS Code 中。

所以我的问题是:我可以使用集成到 VS Code 终端中的 Cygwin 并使用它在上面使用命令(mkdirrm 等)但也可以使用 git 命令并将其用作集成编译器和调试器(一般但至少用于 C++)?我该怎么做呢?

最佳答案

这些配置设置对我有用:

{
// start bash, not the mintty, or you'll get a new window
"terminal.integrated.shell.windows": "C:\\cygwin\\bin\\bash.exe",
// Use this to keep bash from doing a 'cd ${HOME}'
"terminal.integrated.env.windows": {
"CHERE_INVOKING": "1"
},
// Make it a login shell
"terminal.integrated.shellArgs.windows": [
"-l"
],
}

关于windows - VS Code - Cygwin 作为集成终端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46061894/

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