Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customize VSCode to use a console emulator instead of the command prompt

Can I customize VSCode to use a console emulator instead of the command prompt?

I want to use something like conemu, but don't want to use "force conemu as default terminal for console applications" setting in conemu.

It has a specific warning "enabling this option may cause false alarms in antiviral programs", and I'm on my work computer.

like image 645
Hoppe Avatar asked Oct 27 '15 19:10

Hoppe


1 Answers

They have just implemented this feature:

https://github.com/Microsoft/vscode/pull/3495

You'll have the externalTerminal.windowsExec and externalTerminal.linuxExec user settings, where you can define what console emulator to use.

In my case, I'm on windows using conEmu. My user settings (settings.json) are configured like follows:

{
    "externalTerminal.windowsExec": "conEmu64.exe"
}

EDIT: It's already available in the stable version.

like image 168
ViZeke Avatar answered Sep 19 '22 15:09

ViZeke