How to use VS Codes integrated terminal for debugging? -


when debug on vs code, prints gnome-terminal. makes hard keep track of both code , terminal sometimes. possible print integrated terminal rather external terminal ?

to tell vs code use integrated terminal debugging have specify in launch configuration (.vscode/launch.json) using console option. setting specifies launch debug target: internal console, integrated terminal, or external terminal.

"console": "integratedterminal", 

you can read more various launch.json attributes in code's documentation


Comments