DeveloperBreeze

Visual Studio Code Development Tutorials, Guides & Insights

Unlock 3+ expert-curated visual studio code tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your visual studio code skills on DeveloperBreeze.

Tutorial
javascript

Installing a Code Editor (e.g., VS Code)

  • Install Node.js (we’ll cover this in the next tutorial) to run JavaScript directly in the terminal.
  • Open the integrated terminal (Ctrl+~ or Cmd+~) and type:
     node test.js

Dec 10, 2024
Read More
Tutorial
javascript typescript

Building a Custom VS Code Extension: Supercharge Your Workflow

"contributes": {
    "commands": [
        {
            "command": "extension.showHelloWorld",
            "title": "Show Hello World"
        }
    ],
    "configuration": {
        "type": "object",
        "title": "My VS Code Extension",
        "properties": {
            "myExtension.greeting": {
                "type": "string",
                "default": "Hello, World!",
                "description": "The greeting message to display"
            }
        }
    }
}

Next, update the command in extension.ts to read the setting value:

Aug 20, 2024
Read More
Tutorial
python

Enhancing Productivity with Custom Keyboard Shortcuts in Your IDE

In the user key bindings file, add or modify shortcuts by defining the key combination and the corresponding command.

[
    {
        "keys": ["ctrl+t"],
        "command": "toggle_side_bar"
    },
    {
        "keys": ["ctrl+shift+f"],
        "command": "show_panel",
        "args": {"panel": "find_in_files"}
    }
]

Aug 20, 2024
Read More