Reputation: 102317
I want to use ITerm2
not the default terminal as the launch.json console external terminal.
{
"type": "node",
"request": "launch",
"name": "server",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/src/server.ts",
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/build/server.js"
],
"console": "externalTerminal" //default, this open the default ternimal on mac osx.
}
Is this possible?
Upvotes: 1
Views: 3679
Reputation: 36
settings.json-->"terminal.external.osxExec": "Terminal.app"
, change it to "terminal.external.osxExec": "iTerm.app"
Upvotes: 2