'VSCode focus on integratedTerminal after hit F5
It's possible to configure launch.json to move focus to integrated terminal after it shows up?
I've configured profile at launch to use the integrated terminal and to not open the debugger console. In below, the current config. Today I hit “Ctrl+`” right after the terminal starts to focus on it. I want to eliminated that step and make it goes automatically.
{
"name": "Console GerencialISP.Comercial",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "buildComercial",
"program": "${workspaceFolder}/GerencialISP.Comercial/bin/Debug/net6.0/GerencialISP.Comercial.dll",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"args": [],
"cwd": "${workspaceFolder}/GerencialISP.Comercial",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
