2

I have added below lines to Terminal › Integrated › Profiles: Windows:

    "terminal.integrated.profiles.windows": {
        "WTP": {
          "path": "C:\\Users\\***\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe",
        }
    },
    "terminal.integrated.defaultProfile.windows": "WTP",

But this opens Windows Terminal as an external window!

I want to open this terminal in integrated mode to have it inside VS Code window.

AmiNadimi
  • 5,129
  • 3
  • 39
  • 55
  • 1
    Related: [Can I use Windows Terminal as the integrated terminal in VSCode?](https://learn.microsoft.com/en-us/windows/terminal/faq#can-i-use-windows-terminal-as-the-integrated-terminal-in-vscode) – Sercan Jan 13 '22 at 08:52

1 Answers1

5

Thanks to @Sercan comment, the official docs state that it's not possible since VSCode is written in TypeScript while Windows Terminal is native code.

enter image description here