Extensions
Themes
- 84s Sync Wave
- Community Material Theme
- Material Theme Icons
Code
- Better Comments
- Learn Vim
Git
- Git Graph
Languages
- SCSS Intellisence
- Tailwind Intellisence
Debugging
While the debug console is very useful for executing and evaluating code, it can be a little confusing when you’re trying to execute or debug a console application. This is because the debug console doesn’t accept terminal input for a running program.
To handle terminal input while debugging, you can use the integrated terminal (one of the Visual Studio Code windows) or an external terminal. For this tutorial, you use the integrated terminal.
- OpenÂ
.vscode/launch.json. - Change theÂ
console setting toÂintegratedTerminal from:
"console": "internalConsole",To:
"console": "integratedTerminal",- Save your changes.