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.

  1. Open .vscode/launch.json.
  2. Change the console setting to integratedTerminal from:
"console": "internalConsole",

To:

"console": "integratedTerminal",
  1. Save your changes.

Resources