如何在 VS Code 集成模式下打开 Windows 终端
How to open Windows Terminal in VS Code integrated mode
我在 Terminal › Integrated › Profiles: Windows
中添加了以下行:
"terminal.integrated.profiles.windows": {
"WTP": {
"path": "C:\Users\***\AppData\Local\Microsoft\WindowsApps\wt.exe",
}
},
"terminal.integrated.defaultProfile.windows": "WTP",
但这会打开 Windows 终端作为 外部 window!
我想在集成模式下打开这个终端在 VS Code 中window。
感谢@Sercan 的评论,the official docs 声明这是不可能的,因为 VSCode 是用 TypeScript 编写的,而 Windows 终端是本机代码。
我在 Terminal › Integrated › Profiles: Windows
中添加了以下行:
"terminal.integrated.profiles.windows": {
"WTP": {
"path": "C:\Users\***\AppData\Local\Microsoft\WindowsApps\wt.exe",
}
},
"terminal.integrated.defaultProfile.windows": "WTP",
但这会打开 Windows 终端作为 外部 window!
我想在集成模式下打开这个终端在 VS Code 中window。
感谢@Sercan 的评论,the official docs 声明这是不可能的,因为 VSCode 是用 TypeScript 编写的,而 Windows 终端是本机代码。