AmiNadimi
AmiNadimi

Reputation: 5715

How to open Windows Terminal in VS Code integrated mode

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.

Upvotes: 3

Views: 2277

Answers (1)

Cyber Chipmunk
Cyber Chipmunk

Reputation: 102

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

Upvotes: 7

Related Questions